summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile36
1 files changed, 16 insertions, 20 deletions
diff --git a/Makefile b/Makefile
index f33bbd9..7106eb0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
-# surf - simple browser
+# tabbed - tabbing interface for surf
# See LICENSE file for copyright and license details.
include config.mk
-SRC = surf.c tabbed.c
+SRC = tabbed.c
OBJ = ${SRC:.c=.o}
-all: options surf tabbed
+all: options tabbed
options:
- @echo surf build options:
+ @echo tabbed build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
@@ -24,41 +24,37 @@ config.h:
@echo creating $@ from config.def.h
@cp config.def.h $@
-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
+ @rm -f tabbed ${OBJ} tabbed-${VERSION}.tar.gz
dist: clean
@echo creating dist tarball
- @mkdir -p surf-${VERSION}
+ @mkdir -p tabbed-${VERSION}
@cp -R LICENSE Makefile README config.mk \
- surf.1 ${SRC} surf-${VERSION}
- @tar -cf surf-${VERSION}.tar surf-${VERSION}
- @gzip surf-${VERSION}.tar
- @rm -rf surf-${VERSION}
+ tabbed.1 ${SRC} tabbed-${VERSION}
+ @tar -cf tabbed-${VERSION}.tar tabbed-${VERSION}
+ @gzip tabbed-${VERSION}.tar
+ @rm -rf tabbed-${VERSION}
install: all
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
- @cp -f surf ${DESTDIR}${PREFIX}/bin
- @chmod 755 ${DESTDIR}${PREFIX}/bin/surf
+ @cp -f tabbed ${DESTDIR}${PREFIX}/bin
+ @chmod 755 ${DESTDIR}${PREFIX}/bin/tabbed
@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
@mkdir -p ${DESTDIR}${MANPREFIX}/man1
- @sed "s/VERSION/${VERSION}/g" < surf.1 > ${DESTDIR}${MANPREFIX}/man1/surf.1
- @chmod 644 ${DESTDIR}${MANPREFIX}/man1/surf.1
+ @sed "s/VERSION/${VERSION}/g" < tabbed.1 > ${DESTDIR}${MANPREFIX}/man1/tabbed.1
+ @chmod 644 ${DESTDIR}${MANPREFIX}/man1/tabbed.1
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
- @rm -f ${DESTDIR}${PREFIX}/bin/surf
+ @rm -f ${DESTDIR}${PREFIX}/bin/tabbed
@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
- @rm -f ${DESTDIR}${MANPREFIX}/man1/surf.1
+ @rm -f ${DESTDIR}${MANPREFIX}/man1/tabbed.1
.PHONY: all options clean dist install uninstall