summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEnno Boland (Gottox) <gottox@s01.de>2009-06-05 20:16:10 +0200
committerEnno Boland (Gottox) <gottox@s01.de>2009-06-05 20:16:10 +0200
commitad005db13f571dabb72fce448eb0d93f79acf97d (patch)
treeece40129dfe723faf8248b5395c2f2cd562bcf5b /Makefile
parentd1cfea4e86d517177ced89eb96f7f51aa9200298 (diff)
downloadsurf-ad005db13f571dabb72fce448eb0d93f79acf97d.tar.gz
surf-ad005db13f571dabb72fce448eb0d93f79acf97d.tar.bz2
surf-ad005db13f571dabb72fce448eb0d93f79acf97d.zip
supporting multiple windows per instance
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 6 insertions, 4 deletions
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