summaryrefslogtreecommitdiff
path: root/Makefile
blob: 506afa51b2e69688458821129d8a72def2cdcfe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# surf - simple browser
# See LICENSE file for copyright and license details.
.POSIX:

include config.mk

SRC = surf.c piper_webext.c
OBJ = $(SRC:.c=.o)

#superclean:
#	make clean
#	make webext-clean
#	make surf
#	make webext-build
#	sudo make webext-install

all: options surf

options:
	@echo surf build options:
	@echo "OBJ      = $(OBJ)"
	@echo "CFLAGS   = $(SURF_CFLAGS)"
	@echo "LDFLAGS  = $(SURF_LDFLAGS)"
	@echo "CC       = $(CC)"

.c.o:
	@echo CC -c $<
	@$(CC) $(SURF_CFLAGS) -fPIC -c $<

$(OBJ): config.h config.mk

config.h:
	@echo creating $@ from config.def.h
	@cp config.def.h $@

surf: $(OBJ)
	@echo CC -o $@
	@$(CC) $(SURF_CFLAGS) -o $@ $(OBJ) $(SURF_LDFLAGS)

clean:
	@echo cleaning
	@rm -f surf $(OBJ)

distclean: clean
	@echo cleaning dist
	@rm -f config.h surf-$(VERSION).tar.gz

dist: distclean
	@echo creating dist tarball
	@mkdir -p surf-$(VERSION)
	@cp -R LICENSE Makefile config.mk config.def.h README \
	    surf-open.sh arg.h TODO.md surf.png \
	    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


webext-piper.so: webext-piper.o piper_webext.o
	@echo CREATING SHARED LIB
	$(CC) -shared -o webext-piper.so webext-piper.o piper_webext.o

webext-piper.o: webext-piper.c
	@echo COMPILILNG OBJECT
	$(CC) $(EXTCFLAGS) -fPIC -c webext-piper.c 

webext-build: webext-piper.so

webext-install: webext-piper.so
	@echo INSTALLING SHARED LIB to $(LIBPREFIX)
	cp webext-piper.so $(LIBPREFIX)/
webext-uninstall: webext-piper.so
	@echo UNINSTALLING SHARED LIB to $(LIBPREFIX)
	rm $(LIBPREFIX)/webext-piper.so
webext-clean:
	@echo CLEANING UP
	-rm webext-piper.o
	-rm webext-piper.so





.PHONY: all options clean dist install uninstall webext-build webext-install webext-uninstall