From ad005db13f571dabb72fce448eb0d93f79acf97d Mon Sep 17 00:00:00 2001 From: "Enno Boland (Gottox)" Date: Fri, 5 Jun 2009 20:16:10 +0200 Subject: supporting multiple windows per instance --- Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 77a39db..b183603 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,10 @@ include config.mk -SRC = surf.c +SRC = surf.c tabbed.c OBJ = ${SRC:.c=.o} -all: options surf +all: options surf tabbed options: @echo surf build options: @@ -20,9 +20,11 @@ options: ${OBJ}: config.mk -surf: ${OBJ} +surf: surf.o @echo CC -o $@ - @${CC} -o $@ ${OBJ} ${LDFLAGS} + @${CC} -o $@ surf.o ${LDFLAGS} + +tabbed: tabbed.o clean: @echo cleaning -- cgit v1.2.3