From 06bdc46864b5c8dfa7bd87b0505b54aa5b51a270 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Thu, 26 Apr 2012 11:36:28 +0200 Subject: [PATCH] Use .o rather than .c in the Makefile... sorry for that mistake --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.39.2