]> git.stg.codes - stg.git/blob - stglibs/Makefile.in
a016fed5d2b3b7b773663af7ef7ca92ca5d7e97f
[stg.git] / stglibs / Makefile.in
1 ###############################################################################
2 # $Id: Makefile.in,v 1.28 2009/03/03 15:50:14 faust Exp $
3 ###############################################################################
4
5 include ../../Makefile.conf
6
7 PROG = lib$(LIB_NAME).a
8
9 ifeq ($(STG_TIME), yes)
10 DEFS += -DSTG_TIME
11 endif
12
13 ifneq ($(ADD_DEFS),)
14 DEFS += $(ADD_DEFS)
15 endif
16
17 SEARCH_DIRS = -I $(DIR_INCLUDE) -I ./
18
19 OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
20
21 INST_INCS = $(addprefix $(DIR_INCLUDE)/, $(notdir $(INCS)))
22 INST_LIBS = $(DIR_LIB)/lib$(LIB_NAME)
23
24 CXXFLAGS += -fPIC
25 CFLAGS += -fPIC
26
27 vpath %.a $(DIR_LIB)
28
29 all: $(PROG)
30
31 $(PROG): $(OBJS) $(STGLIBS)
32         ar rc lib$(LIB_NAME).a $(OBJS)
33         ranlib lib$(LIB_NAME).a
34         cp *.a $(DIR_LIB)
35
36 includes: $(INCS)
37         cp -p $(INCS) $(DIR_INCLUDE)/stg
38
39 clean:
40         rm -f deps $(PROG) *.o *.a *.so tags *.*~ 
41         for file in $(INCS); do \
42             rm -f $(DIR_INCLUDE)/stg/$$file; \
43         done
44
45 install: $(PROG)
46         mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/lib/stg
47         install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/lib/stg/$(PROG)
48         mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/include/stg
49         install -m $(DATA_MODE) -o $(OWNER) $(INCS) $(PREFIX)/usr/include/stg/
50
51 uninstall:
52         rm -f $(PREFIX)/usr/lib/stg/$(PROG)
53         for file in $(INCS); do \
54             rm -f $(PREFIX)/usr/include/stg/$$file; \
55         done
56
57 ifneq ($(MAKECMDGOALS),includes)
58 ifneq ($(MAKECMDGOALS),clean)
59 ifneq ($(MAKECMDGOALS),uninstall)
60 -include deps
61 endif
62 endif
63 endif
64
65 deps:   $(SRCS) ../../Makefile.conf
66         @>deps ;\
67         for file in $(SRCS); do\
68           echo "$$file" | grep ".c$$" > /dev/null;\
69           if [ $$? == 0 ];\
70           then\
71             echo "`$(CC) $(CFLAGS) $(SEARCH_DIRS) $(DEFS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\
72             echo -e '\t$$(CC) $(CFLAGS) $(SEARCH_DIRS) $(DEFS) -c $$<' >> deps ;\
73           else\
74             echo "`$(CXX) $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\
75             echo -e '\t$$(CXX) $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS) -c $$<' >> deps ;\
76           fi;\
77         done
78