From: Wolfgang (Blub) Bumiller Date: Thu, 26 Apr 2012 09:36:28 +0000 (+0200) Subject: Use .o rather than .c in the Makefile... sorry for that mistake X-Git-Tag: 0.1-rc1~590 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=06bdc46864b5c8dfa7bd87b0505b54aa5b51a270;p=xonotic%2Fgmqcc.git Use .o rather than .c in the Makefile... sorry for that mistake --- diff --git a/Makefile b/Makefile index 2523742..1a562b8 100644 --- 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)