scale up the fragfile sample size
[lunaix-os.git] / lunaix-os / scripts / makefile
1 include lunabuild.mkinc
2 include utils.mkinc
3
4 CFLAGS := -I$(lbuild_config_h)
5
6 SRC  := elftool
7 OUT  := $(addsuffix .tool,$(SRC))
8
9 %.tool : %.c
10         $(call status,CC,$<)
11         @cc $< -o $@
12
13 .PHONY: all clean
14
15 all: $(OUT)
16
17 clean:
18         rm -f $(OUT)