]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Use .o rather than .c in the Makefile... sorry for that mistake
authorWolfgang (Blub) Bumiller <blub@speed.at>
Thu, 26 Apr 2012 09:36:28 +0000 (11:36 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Thu, 26 Apr 2012 09:36:28 +0000 (11:36 +0200)
Makefile

index 2523742b35a8e1fa190c2808b36ce9291d0a6beb..1a562b8961171bf51f0aff110fbba0790ab757c4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,9 +7,9 @@ OBJ     = main.o      \
           typedef.o   \
           util.o      \
           code.o      \
-          asm.c       \
-          ast.c       \
-          ir.c
+          asm.o       \
+          ast.o       \
+          ir.o
 
 %.o: %.c
        $(CC) -c $< -o $@ $(CFLAGS)