]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - Makefile
Adding liferange-calculation used later for templ-allocateion
[xonotic/gmqcc.git] / Makefile
index 6ce342c00aa64534b0fc94599618fd47815a6d4d..f55f7052b7c83205bf87171fc08c7b8e21acaaf5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,13 @@
-CC      = gcc
+CC      = clang
 CFLAGS += -Wall
-OBJ     = main.o    \
-          lex.o     \
-          error.o   \
-          parse.o   \
-          typedef.o \
-          util.o    \
-          code.o
+OBJ     = main.o      \
+          lex.o       \
+          error.o     \
+          parse.o     \
+          typedef.o   \
+          util.o      \
+          code.o      \
+          asm.c
 
 %.o: %.c
        $(CC) -c $< -o $@ $(CFLAGS)