summaryrefslogtreecommitdiffhomepage
path: root/plugins/webbox/Makefile
blob: 861b5d49f26828986c2a85ac38f9e7c0abc3ea82 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
DISTROS=debian10
VERSION=$(shell dpkg-parsechangelog --show-field Version)
PROJECTNAME=webbox

CXX=clang++-10

ifeq ($(shell which $(CXX)),)
CXX=clang++
endif

ifeq ($(shell which $(CXX)),)
CXX=g++-9
endif

ifeq ($(CXXFLAGS),)
#CXXFLAGS=-O2 -DNDEBUG
CXXFLAGS=-O0 -g -D_DEBUG
endif
# -fprofile-instr-generate -fcoverage-mapping
# gcc:--coverage

CXXFLAGS+= -Wall -I. -I../..

CXXFLAGS+= -pthread -fvisibility=hidden -fPIC
ifeq ($(CXX),clang++-10)
CXXFLAGS+=-std=c++20 #-stdlib=libc++
else
CXXFLAGS+=-std=c++17
endif

LIBS=\
-lcommon \
-lboost_context \
-lboost_coroutine \
-lboost_program_options \
-lboost_system \
-lboost_thread \
-lboost_filesystem \
-lboost_regex \
-lpthread \
-lssl -lcrypto \
-ldl

ifeq ($(CXX),clang++-10)
LIBS+= \
-fuse-ld=lld-10 \
-lstdc++
#-lc++ \
#-lc++abi
#-lc++fs
#-lstdc++fs
else
LIBS+= \
-lstdc++ \
-lstdc++fs
endif

LDFLAGS+=-L../../libcommon

PROGSRC=\
    webbox.cpp

SRC=$(PROGSRC)

all: $(PROJECTNAME).so

$(PROJECTNAME).so: ../../libcommon/libcommon.a $(SRC:.cpp=.o)
	$(CXX) $(LDFLAGS) $^ -shared $(LDLIBS) $(LIBS) -o $@

%.d: %.cpp
	$(CXX) $(CXXFLAGS) -MM -MP -MF $@ -c $<

%.o: %.cpp %.d
	$(CXX) $(CXXFLAGS) -c $< -o $@

install:
	mkdir -p $(DESTDIR)/usr/lib/webserver/plugins
	cp $(PROJECTNAME).so $(DESTDIR)/usr/lib/webserver/plugins

	mkdir -p $(DESTDIR)/usr/lib/webbox/html
	cp -r html/* $(DESTDIR)/usr/lib/webbox/html/

	uglifyjs html/webbox.js -m -c > $(DESTDIR)/usr/lib/webbox/html/webbox.js
	htmlmin html/index.html $(DESTDIR)/usr/lib/webbox/html/index.html
	cleancss -o $(DESTDIR)/usr/lib/webbox/html/webbox.css html/webbox.css


# misc ---------------------------------------------------
deb:
	# build binary deb package
	dpkg-buildpackage -us -uc -rfakeroot

deb-src:
	dpkg-source -b .

$(DISTROS): deb-src
	sudo pbuilder build --basetgz /var/cache/pbuilder/$@.tgz --buildresult result/$@ ../webserver_$(VERSION).dsc ; \

debs: $(DISTROS)

clean:
	-rm -f $(PROJECTNAME)
	-find . -name '*.o' -o -name '*.so' -o -name '*.d' -o -name '*.gcno' -o -name '*.gcda' | xargs rm -f

zip: clean
	-rm -f ../$(PROJECTNAME).zip
	zip -r ../$(PROJECTNAME).zip *
	ls -l ../$(PROJECTNAME).zip



.PHONY: clean all zip install deb deb-src debs all $(DISTROS)

-include $(wildcard $(SRC:.cpp=.d))