From 0715d4a705d94ff5ed2ea8808a30143972f0b487 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 18 Apr 2011 22:35:02 -0700 Subject: [PATCH] fix makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 150f360..26109b1 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ LFLAGS := $(shell pkg-config --libs glib-2.0) all: lake lake: lake.o env.o int.o string.o sym.o parse.o bool.o list.o - $(CC) $(CFLAGS) $(LFLAGS) $? -o $@ + $(CC) $(CFLAGS) $(LFLAGS) $^ -o $@ # use touch to prevent errors in case files do not exist clean: