OpenCloudOS-Kernel/tools/perf/config/feature-checks/Makefile

21 lines
222 B
Makefile
Raw Normal View History

FILES=test-hello
CC := $(CC) -MD
all: $(FILES)
BUILD = $(CC) -o $(OUTPUT)$@ $@.c
###############################
test-hello:
$(BUILD)
-include *.d */*.d
###############################
clean:
rm -f $(FILES) *.d