Use .o rather than .c in the Makefile... sorry for that mistake

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-04-26 11:36:28 +02:00
parent 41a39125be
commit 06bdc46864

View file

@ -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)