]> git.saurik.com Git - wxWidgets.git/blob - src/Makefile.in
Makefile tweaks
[wxWidgets.git] / src / Makefile.in
1 #
2 # wxWindows/Unix main source makefile
3 #
4 # Copyright 1998, Markus Holzhem and Robert Roebling
5 #
6
7 # wxWindows base directory
8 WXBASEDIR=@WXBASEDIR@
9
10 # set the OS type for compilation
11 OS=@OS@
12
13 # compile a library only
14 RULE=gslib
15
16 # define common stuff
17 IODBC_C_SRC=\
18 iodbc/catalog.c \
19 iodbc/connect.c \
20 iodbc/dlf.c \
21 iodbc/dlproc.c \
22 iodbc/execute.c \
23 iodbc/fetch.c \
24 iodbc/hdbc.c \
25 iodbc/henv.c \
26 iodbc/herr.c \
27 iodbc/hstmt.c \
28 iodbc/info.c \
29 iodbc/itrace.c \
30 iodbc/main.c \
31 iodbc/misc.c \
32 iodbc/prepare.c \
33 iodbc/result.c
34
35 # include gtk.inc, qt.inc or motif.inc here
36 include @MAKEINCLUDE@
37
38 # determine library names
39 STATIC_LIBRARY=lib$(LIB_TARGET).a
40 SHARED_LIBRARY=lib$(LIB_TARGET).so.$(LIB_MAJOR).$(LIB_MINOR)
41
42 LIB_CPP_ALL_SRC=$(LIB_CPP_SRC) @UNIX_THREAD@
43 # @GTK_JOYSTICK@
44
45 LIB_C_ALL_SRC=$(LIB_C_SRC) @IODBC_C_SRC@ parser.c
46
47 #define library objects
48 LIB_OBJ=\
49 $(LIB_CPP_ALL_SRC:.cpp=.o) \
50 $(LIB_C_ALL_SRC:.c=.o)
51
52 all::
53 @if test ! -d gtk; then mkdir gtk; fi
54 @if test ! -d qt; then mkdir qt; fi
55 @if test ! -d motif; then mkdir motif; fi
56 @if test ! -d motif/xmcombo; then mkdir motif/xmcombo; fi
57 @if test ! -d common; then mkdir common; fi
58 @if test ! -d generic; then mkdir generic; fi
59 @if test ! -d png; then mkdir png; fi
60 @if test ! -d zlib; then mkdir zlib; fi
61 @if test ! -d iodbc; then mkdir iodbc; fi
62
63 install::
64 @echo " "
65 @echo "Installing library files and headers.."
66 @echo " "
67 @echo " Creating directories.."
68 @$(WXBASEDIR)/mkinstalldirs \
69 $(includedir)/wx \
70 $(includedir)/wx/gtk \
71 $(includedir)/wx/common \
72 $(includedir)/wx/generic \
73 $(includedir)/wx/protocol \
74 $(libdir)/wx/include/wx/gtk \
75 $(libdir) \
76 $(bindir)
77 @echo " Copying headers from /include/wx"
78 @cd $(WXBASEDIR)/include/wx ; \
79 $(INSTALL) -d $(includedir)/wx ; \
80 for f in *.h ; do \
81 rm -f $(includedir)/wx/$$f ; \
82 $(INSTALL_DATA) $$f $(includedir)/wx/$$f ; \
83 done ; \
84 for f in *.cpp ; do \
85 rm -f $(includedir)/wx/$$f ; \
86 $(INSTALL_DATA) $$f $(includedir)/wx/$$f ; \
87 done
88 @echo " Copying headers from /include/wx/gtk"
89 @cd $(WXBASEDIR)/include/wx/gtk ; \
90 $(INSTALL) -d $(includedir)/wx/gtk ; \
91 for f in *.h ; do \
92 rm -f $(includedir)/wx/gtk/$$f ; \
93 $(INSTALL_DATA) $$f $(includedir)/wx/gtk/$$f ; \
94 done
95 @echo " Copying headers from /include/wx/generic"
96 @cd $(WXBASEDIR)/include/wx/generic ; \
97 $(INSTALL) -d $(includedir)/wx/generic ; \
98 for f in *.h ; do \
99 rm -f $(includedir)/wx/generic/$$f ; \
100 $(INSTALL_DATA) $$f $(includedir)/wx/generic/$$f ; \
101 done
102 @echo " Copying headers from /include/wx/protocol"
103 @cd $(WXBASEDIR)/include/wx/protocol ; \
104 for f in *.h ; do \
105 rm -f $(includedir)/wx/protocol/$$f ; \
106 $(INSTALL_DATA) $$f $(includedir)/wx/protocol/$$f ; \
107 done
108 @echo " Moving setup.h to library path"
109 @cd $(WXBASEDIR)/src ; \
110 $(INSTALL) -d $(libdir)/wx/include/wx/gtk ;\
111 mv $(includedir)/wx/gtk/setup.h $(libdir)/wx/include/wx/gtk/setup.h ;
112 @echo " Copying wx-config"
113 @cd $(WXBASEDIR)/src ; \
114 $(INSTALL) -d $(bindir) ; \
115 rm -f $(bindir)/wx-config ; \
116 $(INSTALL_PROGRAM) $(WXBASEDIR)/wx-config $(bindir)/wx-config
117 @echo " Copying static library"
118 @cd $(WXBASEDIR)/src ; \
119 rm -f $(libdir)/$(STATIC_LIBRARY) ; \
120 $(INSTALL_DATA) $(WXBASEDIR)/lib/$(OS)/$(STATIC_LIBRARY) $(libdir)/$(STATIC_LIBRARY)
121 @if test -f $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) ; then \
122 echo " Copying shared library" ; \
123 rm -f $(libdir)/lib$(LIB_TARGET).so* ; \
124 $(INSTALL_PROGRAM) $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) $(libdir)/$(SHARED_LIBRARY) ; \
125 $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so.$(LIB_MAJOR) ; \
126 $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so ; \
127 echo " " ; \
128 echo " You may have to run ldconfig!" ; \
129 echo " " ; \
130 fi
131 @echo " "
132 @echo "Installation complete."
133 @echo " "
134
135 clean::
136 $(RM) -rf gtk
137 $(RM) -rf qt
138 $(RM) -rf motif
139 $(RM) -rf common
140 $(RM) -rf generic
141 $(RM) -rf png
142 $(RM) -rf zlib
143 $(RM) -rf iodbc
144 @$(RM) lexer.c parser.c
145
146 #additional things needed for compile
147 ADD_COMPILE=
148
149 # include the definitions now
150 include ../../template.mak
151
152 # things for the prolog stuff
153
154 parser.c: ../common/parser.y lexer.c
155 @if test ! -f parser.y; then \
156 cp -f ../common/parser.y . ; \
157 fi
158 @$(YACC) parser.y
159 @sed -e "s/y.tab.c/parser.y/g" < y.tab.c | \
160 sed -e "s/BUFSIZ/5000/g" | \
161 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
162 sed -e "s/yy/PROIO_yy/g" | \
163 sed -e "s/input/PROIO_input/g" | \
164 sed -e "s/unput/PROIO_unput/g" > parser.c
165 @$(RM) y.tab.c
166 @$(RM) parser.y
167
168 lexer.c: ../common/lexer.l
169 @if test ! -f lexer.l; then \
170 cp -f ../common/lexer.l . ;\
171 fi
172 @$(LEX) lexer.l
173 @sed -e "s/lex.yy.c/lexer.l/g" < lex.yy.c | \
174 sed -e "s/yy/PROIO_yy/g" | \
175 sed -e "s/input/PROIO_input/g" | \
176 sed -e "s/unput/PROIO_unput/g" > lexer.c
177 @$(RM) lex.yy.c
178 @$(RM) lexer.l
179
180 clean::
181