ba5d1a48aa
Use $(CC) instead of harcoded gcc binary name. Signed-off-by: David Carrillo-Cisneros <davidcc@google.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Paul Turner <pjt@google.com> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/20170827075442.108534-2-davidcc@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
27 lines
486 B
Makefile
27 lines
486 B
Makefile
export srctree := $(abspath ../../../..)
|
|
export CC := gcc
|
|
export LD := ld
|
|
export AR := ar
|
|
|
|
ex:
|
|
|
|
include $(srctree)/tools/build/Makefile.include
|
|
|
|
ex: ex-in.o libex-in.o
|
|
$(CC) -o $@ $^
|
|
|
|
ex.%: fixdep FORCE
|
|
make -f $(srctree)/tools/build/Makefile.build dir=. $@
|
|
|
|
ex-in.o: fixdep FORCE
|
|
make $(build)=ex
|
|
|
|
libex-in.o: fixdep FORCE
|
|
make $(build)=libex
|
|
|
|
clean:
|
|
find . -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
|
|
rm -f ex ex.i ex.s
|
|
|
|
.PHONY: FORCE
|