summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEnno Boland (Gottox) <gottox@s01.de>2009-06-06 09:35:50 +0200
committerEnno Boland (Gottox) <gottox@s01.de>2009-06-06 09:35:50 +0200
commit6848b92342058d083a2ba3717914738cbf1bb6d6 (patch)
tree165f656fc7455747eeae5c224d87fc5b631ad9e5 /Makefile
parentad005db13f571dabb72fce448eb0d93f79acf97d (diff)
downloadsurf-6848b92342058d083a2ba3717914738cbf1bb6d6.tar.gz
surf-6848b92342058d083a2ba3717914738cbf1bb6d6.tar.bz2
surf-6848b92342058d083a2ba3717914738cbf1bb6d6.zip
rearranging, adding initial keyboard support.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index b183603..7792628 100644
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,10 @@
include config.mk
-SRC = surf.c tabbed.c
+SRC = surf.c
OBJ = ${SRC:.c=.o}
-all: options surf tabbed
+all: options surf
options:
@echo surf build options:
@@ -20,12 +20,10 @@ options:
${OBJ}: config.mk
-surf: surf.o
+surf: ${OBJ}
@echo CC -o $@
@${CC} -o $@ surf.o ${LDFLAGS}
-tabbed: tabbed.o
-
clean:
@echo cleaning
@rm -f surf ${OBJ} surf-${VERSION}.tar.gz