]> git.lizzy.rs Git - ttfe.git/blobdiff - Makefile
added makefile
[ttfe.git] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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)