diff options
author | bloodstalker <thabogre@gmail.com> | 2018-06-26 10:43:45 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-06-26 10:43:45 +0000 |
commit | 31d095d97c63bb9b9fa9a12ae00998c05a5e48b4 (patch) | |
tree | 6bf678e7dcd8f311ba1ca5daac5c5bcd2a7cfd05 /test/makefile | |
parent | Initial commit (diff) | |
download | luatablegen-31d095d97c63bb9b9fa9a12ae00998c05a5e48b4.tar.gz luatablegen-31d095d97c63bb9b9fa9a12ae00998c05a5e48b4.zip |
first commit
Diffstat (limited to '')
-rw-r--r-- | test/makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/makefile b/test/makefile new file mode 100644 index 0000000..7cdc5a0 --- /dev/null +++ b/test/makefile @@ -0,0 +1,36 @@ +TARGET= +CC=clang +CC?=clang +CC_FLAGS= +CC_EXTRA?= +CC_FLAGS+=$(CC_EXTRA) + +SRCS=$(wildcard *.c) + +.DEFAULT:all + +.PHONY:all clean help + +all:$(TARGET) + +depend:.depend + +.depend:$(SRCS) + rm -rf .depend + $(CC) -MM $(CC_FLAGS) $^ > ./.depend + +-include ./.depend + +.c.o: + $(CC) $(CC_FLAGS) -c $< -o $@ + +$(TARGET): $(TARGET).o + $(CC) $^ $(LD_FLAGS) -o $@ + +clean: + rm -f *.o *~ $(TARGET) + rm .depend + +help: + @echo "all is the default target" + @echo "there is clean." |