6edc13fa4dd446dbaffd3f0e28ef7e502e6bc6c1
[chise/xemacs-chise.git.1] / netinstall / Makefile.in.in
1 ## Copyright (c) 2000, Red Hat, Inc.
2 ##
3 ##     This program is free software; you can redistribute it and/or modify
4 ##     it under the terms of the GNU General Public License as published by
5 ##     the Free Software Foundation; either version 2 of the License, or
6 ##     (at your option) any later version.
7 ##
8 ##     A copy of the GNU General Public License can be found at
9 ##     http://www.gnu.org/
10 ##
11 ## Written by Christopher Faylor <cgf@redhat.com>
12 ## Adapted for XEmacs by Andy Piper <andy@xemacs.org>
13 ##
14 ## Makefile for Cygwin installer
15
16 ## For performance and consistency, no built-in rules
17 .SUFFIXES:
18 .SUFFIXES: .c .cc .h .o
19 ## ==================== Things "configure" will edit ====================
20
21 @SET_MAKE@
22 SHELL = /bin/sh
23 RM = rm -f
24 pwd = /bin/pwd
25
26 CC=@CC@
27 CPP=@CPP@
28 CFLAGS=@CFLAGS@
29 CPPFLAGS=@CPPFLAGS@
30 LDFLAGS=@LDFLAGS@
31 ALLOCA=@ALLOCA@
32 LN_S=@LN_S@
33 version=@version@
34
35 ## This will be the name of the generated binary and is set automatically
36 ## by configure.
37 PROGNAME=@PROGNAME@
38 INSTALLABLES=setup
39 #ifdef USE_GNU_MAKE
40 vpath %.c @srcdir@
41 vpath %.cc @srcdir@
42 vpath %.h @srcdir@
43 vpath %.l @srcdir@
44 vpath %.y @srcdir@
45 vpath %.rc @srcdir@
46 #else
47 VPATH=@srcdir@
48 #endif
49
50 ## ==================== Where To Install Things ====================
51
52 prefix=@prefix@
53 exec_prefix=@exec_prefix@
54 bindir=@bindir@
55 libdir=@libdir@
56 srcdir=@srcdir@
57 datadir=@datadir@
58 instvardir=@instvardir@
59 top_srcdir=@top_srcdir@
60 archlibdir=@archlibdir@
61 configuration=@configuration@
62 moduledir=@moduledir@
63 sitemoduledir=@sitemoduledir@
64 extra_includes=@extra_includes@
65 blddir=@blddir@
66
67 ## ==================== Utility Programs for the Build =================
68
69 INSTALL = @install_pp@ @INSTALL@
70 INSTALL_PROGRAM = @INSTALL_PROGRAM@
71 INSTALL_DATA = @INSTALL_DATA@
72 SHELL = @SHELL@
73 ## ========================== Lists of Files ===========================
74
75 #define NO_SHORTNAMES
76 #define NOT_C_CODE
77 #include "../src/config.h"
78
79 program_transform_name = @program_transform_name@
80
81 CC              = @CC@
82 CC_FOR_TARGET   = $(CC)
83
84 ## -O3 has problems so fix this locally
85 LOCALCFLAGS = $(CFLAGS) -O2 -DMINGW $(extra_includes)
86 CXXFLAGS        = $(LOCALCFLAGS) -fno-exceptions -nostdinc++ -fno-rtti
87
88 WINDRES         = windres
89 MINGW_INCLUDES  = -I. -I$(srcdir) 
90 MINGW_CXXFLAGS  = $(CXXFLAGS) -mno-cygwin $(MINGW_INCLUDES) -mwindows
91 MINGW_CFLAGS    = $(LOCALCFLAGS) -mno-cygwin $(MINGW_INCLUDES) -mwindows
92 MINGW_ZLIB_DIR  = /usr/local/lib
93
94 PROGS   = setup.exe
95 XEMACS=${blddir}/src/${PROGNAME}
96
97 CONFIG_H = ../src/config.h
98
99 OBJS = \
100         autoload.o \
101         choose.o \
102         concat.o \
103         desktop.o \
104         dialog.o \
105         diskfull.o \
106         download.o \
107         find.o \
108         fromcwd.o \
109         geturl.o \
110         hash.o \
111         ini.o \
112         inilex.o \
113         iniparse.o \
114         install.o \
115         localdir.o \
116         log.o \
117         main.o \
118         mkdir.o \
119         mklink2.o \
120         regedit.o \
121         msg.o \
122         net.o \
123         netio.o \
124         nio-ie5.o \
125         nio-file.o \
126         nio-ftp.o \
127         nio-http.o \
128         other.o \
129         postinstall.o \
130         res.o \
131         root.o \
132         simpsock.o \
133         site.o \
134         source.o \
135         splash.o \
136         state.o \
137         tar.o \
138         version.o
139
140 .SUFFIXES:
141 .NOEXPORT:
142
143 .PHONY: all install
144
145 all: Makefile $(PROGS)
146
147 setup.exe: $(OBJS)
148         $(CXX) $(MINGW_CXXFLAGS) -o $@ $(OBJS) \
149                 -lole32 -lwsock32 -lnetapi32 -ladvapi32 \
150                 -luuid -lkernel32 -luser32 \
151                 -L$(MINGW_ZLIB_DIR) -lz -lmingw32
152         @chmod a-x $@
153
154 setup.ini: setup.exe
155         V=`grep '^\$$Revision.*' $(srcdir)/ChangeLog \
156         | sed -e 's/\$$Revision:* *//' \
157           -e 's/ *$$.*//'` ;\
158         $(XEMACS) -batch -vanilla -l ${srcdir}/../lisp/package-net.el \
159                 -f package-net-batch-convert-index-to-ini . $$V
160
161 install:
162         @echo; echo "Installing net setup."
163         for file in ${INSTALLABLES} ; do \
164           (cd .. && $(INSTALL_PROGRAM) netinstall/$${file} ${bindir}/$${file}) ; \
165         done
166
167 version.c : $(srcdir)/ChangeLog Makefile
168         V=`grep '^\$$Revision.*' $(srcdir)/ChangeLog \
169         | sed -e 's/\$$Revision:* *//' \
170           -e 's/ *$$.*//'` ;\
171         echo "char *version = \"$$V\";" > version.tmp ;\
172         echo "static char *id = \"\\n%%% setup-version $$V\\n\";" >> version.tmp
173         mv version.tmp version.c
174
175 %.o: %.rc
176         $(WINDRES) --include-dir $(srcdir) -o $@ $<
177
178 %.o: %.c
179         $(CC) $(MINGW_CFLAGS) -c -o $@ $<
180
181 %.o: %.cc
182         $(CC) $(MINGW_CXXFLAGS) -c -o $@ $<
183
184 iniparse.c iniparse.h : iniparse.y
185         bison -d -o iniparse.c $(srcdir)/iniparse.y
186
187 inilex.c : inilex.l iniparse.h
188         flex -8 $(srcdir)/inilex.l
189         mv lex.yy.c inilex.c
190
191 .PHONY: mostlyclean clean distclean realclean extraclean
192
193 mostlyclean:
194         $(RM) *.o *.i core $(PROGS)
195
196 clean: mostlyclean
197
198 distclean: clean
199         $(RM) GNUmakefile Makefile Makefile.in TAGS
200
201 realclean: distclean
202
203 extraclean: distclean
204         $(RM) *~ \#*
205
206 choose.o: choose.cc win32.h dialog.h resource.h state.h ini.h concat.h \
207  msg.h log.h find.h reginfo.h
208 concat.o: concat.cc
209 desktop.o: desktop.cc win32.h resource.h ini.h msg.h state.h concat.h \
210  mkdir.h dialog.h version.h port.h
211 dialog.o: dialog.cc win32.h dialog.h msg.h log.h
212 diskfull.o: diskfull.cc win32.h diskfull.h
213 download.o: download.cc win32.h resource.h msg.h ini.h dialog.h \
214  concat.h geturl.h state.h mkdir.h log.h
215 find.o: find.cc win32.h port.h
216 fromcwd.o: fromcwd.cc win32.h ini.h resource.h concat.h state.h \
217  dialog.h msg.h find.h version.h port.h
218 geturl.o: geturl.cc win32.h dialog.h \
219  geturl.h resource.h netio.h msg.h log.h
220 hash.o: hash.cc hash.h
221 ini.o: ini.cc win32.h ini.h resource.h concat.h state.h geturl.h \
222  dialog.h msg.h mkdir.h log.h reginfo.h version.h
223 inilex.o: inilex.c win32.h \
224  ini.h \
225  iniparse.h
226 iniparse.o: iniparse.c ini.h \
227  iniparse.h \
228  port.h
229 install.o: install.cc win32.h \
230  resource.h ini.h dialog.h concat.h geturl.h mkdir.h state.h tar.h \
231  diskfull.h msg.h regedit.h reginfo.h log.h hash.h port.h
232 localdir.o: localdir.cc win32.h dialog.h resource.h state.h msg.h \
233  concat.h log.h
234 log.o: log.cc win32.h resource.h msg.h log.h dialog.h state.h concat.h \
235  mkdir.h
236 main.o: main.cc win32.h resource.h dialog.h state.h msg.h netio.h \
237  find.h log.h port.h
238 mkdir.o: mkdir.cc win32.h mkdir.h
239 mklink2.o: mklink2.c win32.h /usr/include/w32api/shlobj.h
240 msg.o: msg.cc win32.h dialog.h log.h
241 net.o: net.cc win32.h dialog.h resource.h state.h msg.h log.h
242 netio.o: netio.cc win32.h resource.h state.h msg.h netio.h nio-file.h \
243  nio-ie5.h nio-http.h nio-ftp.h dialog.h log.h port.h
244 nio-file.o: nio-file.cc win32.h netio.h nio-file.h resource.h msg.h
245 nio-ftp.o: nio-ftp.cc win32.h resource.h state.h simpsock.h log.h \
246  netio.h nio-ftp.h
247 nio-http.o: nio-http.cc win32.h resource.h state.h simpsock.h msg.h \
248  netio.h nio-http.h
249 nio-ie5.o: nio-ie5.cc win32.h resource.h state.h dialog.h msg.h \
250  netio.h nio-ie5.h
251 other.o: other.cc win32.h dialog.h resource.h state.h msg.h log.h
252 postinstall.o: postinstall.cc win32.h state.h dialog.h find.h concat.h \
253  port.h
254 regedit.o: regedit.cc win32.h reginfo.h regedit.h msg.h resource.h \
255  dialog.h
256 root.o: root.cc win32.h dialog.h resource.h state.h msg.h regedit.h \
257  reginfo.h concat.h log.h
258 simpsock.o: simpsock.cc win32.h simpsock.h msg.h
259 site.o: site.cc win32.h dialog.h resource.h state.h geturl.h msg.h \
260  concat.h regedit.h reginfo.h log.h port.h
261 source.o: source.cc win32.h dialog.h resource.h state.h msg.h log.h
262 splash.o: splash.cc win32.h dialog.h resource.h msg.h version.h
263 state.o: state.cc state.h
264 tar.o: tar.cc win32.h tar.h mkdir.h log.h port.h
265 version.o: version.c