From 90ffd0952f61717d93858b154d2505d0ba051b14 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Sat, 23 Apr 2005 18:41:48 -0700 Subject: [PATCH] [PATCH] Simplify building of programs Do not first build .o files when building programs. Signed-off-by: Jonas Fonseca Signed-off-by: Linus Torvalds --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 57e70239..2184a74b 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ $(LIB_FILE): $(LIB_OBJS) init-db: init-db.o -%: %.o $(LIB_FILE) +%: %.c $(LIB_FILE) $(CC) $(CFLAGS) -o $@ $< $(LIBS) blob.o: $(LIB_H) -- 2.11.0