supporting multiple windows per instance

This commit is contained in:
Enno Boland (Gottox)
2009-06-05 20:16:10 +02:00
parent d1cfea4e86
commit ad005db13f
2 changed files with 134 additions and 86 deletions
+6 -4
View File
@@ -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