source: git/src/Makefile.am @ 1f7e983

RELEASE/1.0
Last change on this file since 1f7e983 was 1f7e983, checked in by Olly Betts <olly@…>, 14 years ago

Backport change from 1.1.13:
src/Makefile.am: Use wx-config's --rescomp option to get the command
and options needed to turn .rc files into object files.

git-svn-id: file:///home/survex-svn/survex/branches/1.0@3472 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 6.5 KB
Line 
1## Process this file with automake to produce Makefile.in
2
3check-local dist-hook:
4        if grep '@.*@' borlandc/config.h riscos/config.h ; then \
5          echo 'Unsubstituted token in src/*/config.h - something is amiss with configure.in'; \
6          exit 1; \
7        fi
8
9noinst_HEADERS = cavern.h commands.h cmdline.h datain.h debug.h filelist.h\
10 filename.h getopt.h hash.h img.h ini.h listpos.h matrix.h message.h namecmp.h\
11 netartic.h netbits.h netskel.h network.h osalloc.h osdepend.h ostypes.h out.h\
12 readval.h str.h useful.h validate.h whichos.h\
13 prbitmap.h prcore.h prio.h new3dout.h 3ddefs.h \
14 armrot.h caverot.h cvrotgfx.h cvrotimg.h dosrot.h labels.h rotplot.h xrot.h\
15 xcvrtbut.h\
16 aboutdlg.h aven.h avenpal.h gfxcore.h mainfrm.h matrix4.h quaternion.h\
17 vector3.h wx.h aventypes.h aventreectrl.h export.h printwx.h avenprcore.h
18
19# GCC 2.95 frequently dies on gfxcore.cc with an internal error, so if the
20# compile fails, rerun it with -O instead of -O2 - FIXME this probably
21# assumes things about automake internals...
22# Argh - the Apple's cc for MacOS X (based on GCC 2.95) won't compile
23# gfxcore.cc with *any* level of optimisation...
24h = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS)
25t = -c -o aven-gfxcore.o `test -f gfxcore.cc || echo '$(srcdir)/'`gfxcore.cc
26
27aven-gfxcore.o: gfxcore.cc
28        source='gfxcore.cc' object='aven-gfxcore.o' libtool=no \
29        depfile='$(DEPDIR)/aven-gfxcore.Po' \
30        tmpdepfile='$(DEPDIR)/aven-gfxcore.TPo' \
31        $(CXXDEPMODE) $(depcomp) \
32        $h $(aven_CXXFLAGS) $(CXXFLAGS) $t \
33         || $h `echo $(aven_CXXFLAGS) $(CXXFLAGS)|sed 's/-O2/-O/g'` $t \
34         || $h `echo $(aven_CXXFLAGS) $(CXXFLAGS)|sed 's/-O2*//g'` $t
35
36LDADD = $(LIBOBJS)
37
38INCLUDES = -DIMG_HOSTED
39
40PRINT = printdm printps printpcl printhpgl
41
42# printxbm and dump3d are test programs
43EXTRA_PROGRAMS =\
44        caverot xcaverot\
45        printwin aven dump3d printxbm editwrap
46# FIXME: base_progs in top level Makefile.am needs updating if this is
47bin_PROGRAMS = cavern $(PRINT) diffpos extend cad3d sorterr \
48 3dtopos $(CAVEROT) $(AVEN) $(WINPROGS) $(TESTPROGS)
49bin_SCRIPTS = svxedit
50
51COMMONSRC = cmdline.c message.c filename.c osdepend.c z_getopt.c getopt1.c
52
53cavern_SOURCES = cavern.c listpos.c commands.c datain.c netskel.c network.c \
54 readval.c str.c matrix.c img.c netbits.c useful.c validate.c netartic.c \
55 new3dout.c $(COMMONSRC)
56
57aven_SOURCES = aven.cc img.c message.c filename.c osdepend.c \
58 gfxcore.cc mainfrm.cc matrix4.cc quaternion.cc vector3.cc aboutdlg.cc \
59 useful.c cmdline.c z_getopt.c getopt1.c namecmp.c aventreectrl.cc export.cc \
60 avenprcore.cc printwx.cc ini.c hash.c
61
62dump3d_SOURCES = dump3d.c img.c useful.c $(COMMONSRC)
63
64editwrap_SOURCES = editwrap.c
65editwrap_LDFLAGS = -mwindows
66
67if WIN32
68aven_LDADD = avenrc.o $(LIBOBJS) $(WX_LIBS)
69
70svxeditrc.o: $(srcdir)/svxedit.rc svxedit.ico
71        pwd=`pwd` && cd $(srcdir) && `$(WX_CONFIG) --rescomp` -o "$$pwd/svxeditrc.o" svxedit.rc
72
73svxedit.ico: ../lib/icons/svxedit.ico
74        cp ../lib/icons/svxedit.ico .
75
76editwrap_LDADD = svxeditrc.o
77
78# FIXME: use path on WXCONFIG to get --include-dir?
79avenrc.o: $(srcdir)/aven.rc aven.ico
80        pwd=`pwd` && cd $(srcdir) && `$(WX_CONFIG) --rescomp` -o "$$pwd/avenrc.o" aven.rc
81
82aven.ico: ../lib/icons/aven.ico
83        cp ../lib/icons/aven.ico .
84
85CLEANFILES = aven.ico svxedit.ico
86else
87aven_LDADD = $(LIBOBJS) $(WX_LIBS)
88endif
89
90# If we're building aven on MacOS X, we need to bind resources to aven after
91# we build it.  Use aven-rez as a timestamp file to track whether we've
92# bound resources.
93# The MacOS X install program doesn't copy the resource fork (clever eh?) so
94# we reapply the resources after installing too...
95if AVEN
96if MACOSX
97AVEN_REZ = aven-rez
98
99aven-rez: aven
100        `$(WXCONFIG) --rezflags` aven
101        touch aven-rez
102
103install-exec-hook:
104        `$(WXCONFIG) --rezflags` $(bindir)/aven
105else !MACOSX
106AVEN_REZ =
107
108# We need an empty target as automake will try to make it because it's in the
109# other branch.
110install-exec-hook:
111
112endif !MACOSX
113else !AVEN
114AVEN_REZ =
115
116# need empty target as automake will try to make it because it's in the other
117# branch
118install-exec-hook:
119
120endif !AVEN
121
122noinst_SCRIPTS = $(AVEN_REZ)
123MOSTLYCLEANFILES = $(AVEN_REZ)
124
125aven_CFLAGS = $(WX_CFLAGS) $(AM_CFLAGS) -DAVEN
126aven_CXXFLAGS = $(WX_CXXFLAGS) $(AM_CXXFLAGS)
127aven_LDFLAGS = $(WX_LDFLAGS)
128
129PRSRC = prcore.c prio.c useful.c img.c ini.c hash.c $(COMMONSRC)
130
131printps_SOURCES = printps.c $(PRSRC)
132printdm_SOURCES = printdm.c $(PRSRC) prbitmap.c
133printpcl_SOURCES = printpcl.c $(PRSRC) prbitmap.c
134printxbm_SOURCES = printxbm.c $(PRSRC) prbitmap.c
135printhpgl_SOURCES = prhpgl.c $(PRSRC)
136printwin_SOURCES = printwin.c $(PRSRC)
137printwin_LDFLAGS = -mconsole
138printwin_LDADD = -lgdi32 -lcomdlg32
139
140ROTSRC = cvrotimg.c img.c useful.c $(COMMONSRC)
141
142caverot_SOURCES = caverot.c $(ROTSRC) rotplot.c labels.c cvrotgfx.c
143EXTRA_caverot_SOURCES = dosrot.c
144caverot_LDADD = @LIBOBJS@ @CROBJX@ @CRLIB@
145caverot_DEPENDENCIES = @CROBJX@
146
147xcaverot_SOURCES = xcaverot.c xcvrtbut.c $(ROTSRC)
148xcaverot_CFLAGS = @X_CFLAGS@ -DXCAVEROT
149xcaverot_LDADD = @LIBOBJS@ @X_LIBS@ @X_PRE_LIBS@ -lX11 @X_EXTRA_LIBS@
150
151diffpos_SOURCES = diffpos.c namecmp.c img.c useful.c hash.c $(COMMONSRC)
152sorterr_SOURCES = sorterr.c $(COMMONSRC)
1533dtopos_SOURCES = 3dtopos.c namecmp.c img.c useful.c $(COMMONSRC)
154extend_SOURCES = extend.c $(COMMONSRC) img.c useful.c hash.c
155
156cad3d_SOURCES = cad3d.c $(COMMONSRC) useful.c img.c hash.c
157
158#testerr_SOURCES = testerr.c message.c filename.c useful.c osdepend.c
159#imgtest_SOURCES = imgtest.c imgalone.c
160
161# this doesn't work if compiler doesn't support -c and -o, or with
162# deANSIfication
163# Use imgalone.c containing '#define STANDALONE/#include "img.c"'?
164#imgalone.o: img.c
165#        $(COMPILE) -DSTANDALONE -o imgalone.o -c img.c
166
167noinst_DATA = borlandc/makefile riscos/makefile
168
169EXTRA_DIST = \
170 miniam.pl borlandc/makefile borlandc/config.h borlandc/config.h.in\
171 riscos/makefile riscos/config.h riscos/config.h.in riscos/armrot.s\
172 riscos/stdh/regnames riscos/stdh/swinames msvc/config.h msvc/config.h.in\
173 aven.rc svxedit.rc getopt.c gettexttomsg.pl gradient.pov gdtconvert
174
175BUILT_SOURCES = z_getopt.c avenpal.h
176
177z_getopt.c: getopt.c gettexttomsg.pl
178        $(srcdir)/gettexttomsg.pl `test -f getopt.c || echo '$(srcdir)/'`getopt.c > z_getopt.c~ && mv z_getopt.c~ z_getopt.c
179
180avenpal.h: $(srcdir)/gradient.pov gdtconvert
181        $(srcdir)/gdtconvert < $(srcdir)/gradient.pov > tmp-avenpal.h && mv tmp-avenpal.h avenpal.h
182
183MAINTAINERCLEANFILES =\
184 borlandc/makefile riscos/makefile\
185 $(BUILT_SOURCES)
186
187borlandc/makefile: $(srcdir)/Makefile.am miniam.pl
188        $(srcdir)/miniam.pl borlandc < $(srcdir)/Makefile.am > borlandc/makefile
189
190riscos/makefile: $(srcdir)/Makefile.am miniam.pl
191        $(srcdir)/miniam.pl riscos < $(srcdir)/Makefile.am > riscos/tmp-makefile && mv riscos/tmp-makefile riscos/makefile
Note: See TracBrowser for help on using the repository browser.