diff options
author | Enno Boland (tox) <tox@s01.de> | 2009-09-07 13:22:41 +0200 |
---|---|---|
committer | Enno Boland (tox) <tox@s01.de> | 2009-09-07 13:22:41 +0200 |
commit | 7d000b3e26d0d9f87ef5a368336db7f72130462f (patch) | |
tree | e4a2dd090a87ca41a09546027c5f6bf634327e87 /Makefile | |
parent | 03894249694dea128695789e3684d8dd7c2eb94a (diff) |
start writing tabbed.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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 |