From 7d000b3e26d0d9f87ef5a368336db7f72130462f Mon Sep 17 00:00:00 2001 From: "Enno Boland (tox)" Date: Mon, 7 Sep 2009 13:22:41 +0200 Subject: start writing tabbed. --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5a98461..f33bbd9 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: @@ -24,10 +24,14 @@ config.h: @echo creating $@ from config.def.h @cp config.def.h $@ -surf: ${OBJ} +surf: surf.o @echo CC -o $@ @${CC} -o $@ surf.o ${LDFLAGS} +tabbed: tabbed.o + @echo CC -o $@ + @${CC} -o $@ tabbed.o ${LDFLAGS} + clean: @echo cleaning @rm -f surf ${OBJ} surf-${VERSION}.tar.gz -- cgit v1.2.3