about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorEnno Boland (Gottox) <gottox@s01.de>2009-06-05 13:22:40 +0200
committerEnno Boland (Gottox) <gottox@s01.de>2009-06-05 13:22:40 +0200
commitefdd0dd584829a9db969511e487010bf2107b503 (patch)
tree5b18f76172ff79eed9566608f817ac62f3a8e4f3 /Makefile
downloadsurf-efdd0dd584829a9db969511e487010bf2107b503.tar.gz
surf-efdd0dd584829a9db969511e487010bf2107b503.tar.bz2
surf-efdd0dd584829a9db969511e487010bf2107b503.zip
Initial Commit.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile56
1 files changed, 56 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..77a39db
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,56 @@
+# surf - simple browser
+# See LICENSE file for copyright and license details.
+
+include config.mk
+
+SRC = surf.c
+OBJ = ${SRC:.c=.o}
+
+all: options surf
+
+options:
+	@echo surf build options:
+	@echo "CFLAGS   = ${CFLAGS}"
+	@echo "LDFLAGS  = ${LDFLAGS}"
+	@echo "CC       = ${CC}"
+
+.c.o:
+	@echo CC $<
+	@${CC} -c ${CFLAGS} $<
+
+${OBJ}: config.mk
+
+surf: ${OBJ}
+	@echo CC -o $@
+	@${CC} -o $@ ${OBJ} ${LDFLAGS}
+
+clean:
+	@echo cleaning
+	@rm -f surf ${OBJ} surf-${VERSION}.tar.gz
+
+dist: clean
+	@echo creating dist tarball
+	@mkdir -p surf-${VERSION}
+	@cp -R LICENSE Makefile README config.def.h config.mk \
+		surf.1 ${SRC} surf-${VERSION}
+	@tar -cf surf-${VERSION}.tar surf-${VERSION}
+	@gzip surf-${VERSION}.tar
+	@rm -rf surf-${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
+	@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
+
+uninstall:
+	@echo removing executable file from ${DESTDIR}${PREFIX}/bin
+	@rm -f ${DESTDIR}${PREFIX}/bin/surf
+	@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
+	@rm -f ${DESTDIR}${MANPREFIX}/man1/surf.1
+
+.PHONY: all options clean dist install uninstall