]> git.stg.codes - stg.git/blob - projects/sgauth/Makefile
3c538966727c3782e49b4f5443301eaddcd52f67
[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 ifneq ($(OS),linux)
24 LIBS += -lintl \
25         -lc \
26         -liconv
27 D_FLAG = -D
28 else
29 D_FLAG = -d
30 endif
31
32 SEARCH_DIRS = -I ../../include
33
34 OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
35
36 CXXFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
37 CFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
38 LDFLAGS += $(STGLIBS_LIBS)
39
40 .PHONY: all clean distclean libs install uninstall install-bin install-data uninstall-bin uninstall-data
41 all: libs $(PROG) ../../Makefile.conf
42
43 libs:
44         $(MAKE) -C $(DIR_LIBSRC)
45
46 $(PROG): $(OBJS)
47         $(CXX) $^ $(LDFLAGS) -o $(PROG) $(LIBS)
48
49 clean:
50         rm -f deps $(PROG) *.o tags *.*~ .OS
51         rm -f .OS
52         rm -f .store
53         rm -f .db.sql
54         rm -f core*
55         rm -f css.h
56         $(MAKE) -C $(DIR_LIBSRC) clean
57
58 distclean: clean
59         rm -f ../../Makefile.conf
60
61 install: install-bin install-data
62
63 install-bin:
64 ifeq ($(DEBUG), yes)
65         install $(D_FLAG) -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/sbin/$(PROG)
66 else
67         install $(D_FLAG) -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