From 6be246b846667726c64122a5c36467eeb9171af9 Mon Sep 17 00:00:00 2001 From: "zik.saleeba" Date: Sat, 28 Feb 2009 21:29:51 +0000 Subject: [PATCH] Being more conservative with dependency generation git-svn-id: http://picoc.googlecode.com/svn/trunk@132 21eae674-98b7-11dd-bd71-f92a316d2d60 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e82b87a..3c64721 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ TARGET = picoc SRCS = picoc.c table.c lex.c parse.c heap.c type.c variable.c clibrary.c platform_library.c platform_support.c OBJS := $(SRCS:%.c=%.o) -all: $(TARGET) +all: depend $(TARGET) $(TARGET): $(OBJS) $(CC) $(CFLAGS) -o $(TARGET) $(OBJS) $(LIBS)