]> git.stg.codes - stg.git/blob - projects/sgauth/Makefile
Добавление исходников
[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        ./web.cpp
11
12 STGLIBS =  -lconffiles \
13            -lstg_crypto \
14            -lstg_common \
15            -lia_auth_c \
16            -lcommon_settings
17
18 LIBS += $(LIB_THREAD) \
19         -lexpat
20
21 ifeq ($(OS),linux)
22 LIBS += -ldl
23 else
24 LIBS += -lintl \
25         -lc
26 endif
27
28 SEARCH_DIRS = -I $(DIR_INCLUDE)
29
30 OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
31
32 CXXFLAGS += -Wall
33 LDFLAGS += -Wl,-E -L$(DIR_LIB) -Wl,-rpath,$(PREFIX)/usr/lib/stg -Wl,-rpath-link,$(DIR_LIB)
34
35 vpath %.so $(DIR_LIB)
36
37 .PHONY: all clean distclean libs install uninstall install-bin install-data uninstall-bin uninstall-data
38 all: libs $(PROG) ../../Makefile.conf
39
40 libs:
41         $(MAKE) -C $(DIR_LIBSRC)
42
43 $(PROG): $(OBJS) $(STGLIBS) 
44         $(CC) $^ $(LDFLAGS) -o $(PROG) $(LIBS)
45
46 clean:
47         rm -f deps $(PROG) *.o tags *.*~ .OS
48         rm -f .OS
49         rm -f .store
50         rm -f .db.sql
51         rm -f core*
52         rm -f css.h
53         $(MAKE) -C $(DIR_LIBSRC) clean
54
55 distclean: clean
56         rm -f ../../Makefile.conf
57
58 install: install-bin install-data
59
60 install-bin:
61         mkdir -m $(BIN_MODE) -p $(PREFIX)/usr/sbin
62         install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/sbin/$(PROG)
63         $(MAKE) -C $(DIR_LIBSRC) install
64
65 install-data:
66         # Install etc
67         mkdir -m $(DATA_MODE) -p $(PREFIX)/etc
68         install -m $(DATA_MODE) -o $(OWNER) ./sgauth.conf $(PREFIX)/etc/sgauth.conf
69
70 uninstall: uninstall-bin uninstall-data
71
72 uninstall-bin:
73         rm -f $(PREFIX)/usr/sbin/$(PROG)
74
75 uninstall-data:
76         # Uninstall etc
77         rm -f $(PREFIX)/etc/stargazer/sgauth.conf
78
79
80 ifneq ($(MAKECMDGOALS),distclean)
81 ifneq ($(MAKECMDGOALS),clean)
82 ifneq ($(MAKECMDGOALS),uninstall)
83 -include deps
84 endif
85 endif
86 endif
87
88 deps:   $(SRCS) ../../Makefile.conf sgauth.css
89         $(MAKE) -C $(DIR_LIBSRC) includes
90         @>deps ;\
91         ./make_css.sh
92         for file in $(SRCS); do\
93           echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile" >> deps ;\
94           echo -e '\t$$(CC) -c $$< $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\
95         done
96
97