]> git.stg.codes - stg.git/blob - projects/sgauth/Makefile
Fixes due to stupid behaviour of BSD-like install.
[stg.git] / projects / sgauth / Makefile
1 ###############################################################################
2 # $Id: Makefile,v 1.18 2009/08/06 12:50:55 faust Exp $
3 ###############################################################################
4
5 include ../../Makefile.conf
6
7 PROG = sgauth
8
9 SRCS = ./main.cpp \
10        ./settings_impl.cpp \
11        ./web.cpp
12
13 STGLIBS =  conffiles \
14            ia \
15            crypto \
16            common
17
18 STGLIBS_INCS = $(addprefix -I ../../stglibs/,$(addsuffix .lib/include,$(STGLIBS)))
19 STGLIBS_LIBS = $(addprefix -L ../../stglibs/,$(addsuffix .lib,$(STGLIBS)))
20
21 LIBS += $(addprefix -lstg,$(STGLIBS)) $(LIB_THREAD)
22
23 ifeq ($(OS),linux)
24 else
25 LIBS += -lintl \
26         -lc \
27         -liconv
28 endif
29
30 SEARCH_DIRS = -I ../../include
31
32 OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
33
34 CXXFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
35 CFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
36 LDFLAGS += $(STGLIBS_LIBS)
37
38 .PHONY: all clean distclean libs install uninstall install-bin install-data uninstall-bin uninstall-data
39 all: libs $(PROG) ../../Makefile.conf
40
41 libs:
42         $(MAKE) -C $(DIR_LIBSRC)
43
44 $(PROG): $(OBJS)
45         $(CXX) $^ $(LDFLAGS) -o $(PROG) $(LIBS)
46
47 clean:
48         rm -f deps $(PROG) *.o tags *.*~ .OS
49         rm -f .OS
50         rm -f .store
51         rm -f .db.sql
52         rm -f core*
53         rm -f css.h
54         $(MAKE) -C $(DIR_LIBSRC) clean
55
56 distclean: clean
57         rm -f ../../Makefile.conf
58
59 install: install-bin install-data
60
61 install-bin:
62 ifeq ($(DEBUG), yes)
63         mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/sbin
64         install -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/sbin/$(PROG)
65 else
66         mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/sbin
67         install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/sbin/$(PROG)
68 endif
69         $(MAKE) -C $(DIR_LIBSRC) install
70
71 install-data:
72         # Install etc
73         mkdir -m $(DIR_MODE) -p $(PREFIX)/etc
74         install -m $(DATA_MODE) -o $(OWNER) ./sgauth.conf $(PREFIX)/etc/sgauth.conf
75
76 uninstall: uninstall-bin uninstall-data
77
78 uninstall-bin:
79         rm -f $(PREFIX)/usr/sbin/$(PROG)
80
81 uninstall-data:
82         # Uninstall etc
83         rm -f $(PREFIX)/etc/sgauth.conf
84
85
86 ifneq ($(MAKECMDGOALS),distclean)
87 ifneq ($(MAKECMDGOALS),clean)
88 ifneq ($(MAKECMDGOALS),uninstall)
89 -include deps
90 endif
91 endif
92 endif
93
94 deps:   $(SRCS) ../../Makefile.conf sgauth.css
95         $(MAKE) -C $(DIR_LIBSRC)
96         @>deps ;\
97         ./make_css.sh ;\
98         for file in $(SRCS); do\
99           echo "$$file" | grep ".c$$" > /dev/null;\
100           if [ $$? -eq 0 ];\
101           then\
102             echo "`$(CC) $(CFLAGS) -MM $$file` Makefile" >> deps ;\
103             printf '%b\n' '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\
104           else\
105             echo "`$(CXX) $(CXXFLAGS) -MM $$file` Makefile" >> deps ;\
106             printf '%b\n' '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\
107           fi;\
108         done