diff options
-rw-r--r-- | Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8e38bbe --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +CC=clang +FLAGS=-g -Wall -pedantic -Wextra -Wconversion\ + -Waggregate-return -Wcast-align -Wcast-qual -Wchar-subscripts\ + -Wdisabled-optimization -Wimplicit -Wimport -Winline\ + -Winit-self -Wlong-long -Wmissing-braces\ + -Wmissing-field-initializers -Wparentheses -Wunreachable-code\ + -Wunused -Wunused-value -Wunused-variable -Wwrite-strings + +OBJS=$(SOURCES:.c=.o) +SOURCES=$(wildcard *.c) +EXEC=ttfe + +all: $(OBJS) + $(CC) $(FLAGS) $(OBJS) -o $(EXEC) + +%.o: %.c + $(CC) -c $(FLAGS) $< -o $@ + + +clean: + rm -rf *.o + rm $(EXEC) |