1 # Make environment for making samples on Unix
3 # The binary program extension, if any, including dots (e.g. '.exe')
4 PROGRAM_EXT = @PROGRAM_EXT@
5 BIN_PROGRAM = $(PROGRAM)$(PROGRAM_EXT)
6 RES_PROGRAM_OBJ = @RESPROGRAMOBJ@
7 BUNDLE = $(BIN_PROGRAM).app/Contents
10 $(CC) -c $(CFLAGS) $(APPEXTRADEFS) -o $@ $<
13 $(CXX) -c $(CXXFLAGS) $(APPEXTRADEFS) -o $@ $<
16 $(CXX) -c $(CXXFLAGS) $(APPEXTRADEFS) -o $@ $<
19 $(RESCOMP) -i $< -o $@ $(RESFLAGS)
22 # the comment at the end of the next line is needed because otherwise autoconf
23 # would remove this line completely - it contains a built-in hack to remove
24 # any VPATH assignment not containing ':'
25 VPATH = @PATH_IFS@$(top_srcdir)/$(program_dir) # ':' for autoconf
27 # Set defaults from configure
28 include $(top_builddir)/src/make.env
30 all: $(BIN_PROGRAM) @MACOSX_BUNDLE@ install_dirs install_data
32 $(BIN_PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(RES_PROGRAM_OBJ) @LIBWXMACRES@
33 $(CXX) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(LDLIBS) $(LIBRARIES) $(RES_PROGRAM_OBJ)
37 @list='$(DATADIRS)'; for p in $$list; do \
38 mkdir -p $(top_builddir)/$(program_dir)/$$p; \
42 @list='$(DATAFILES)'; for p in $$list; do \
43 if test ! -s $(top_builddir)/$(program_dir)/$$p; then \
44 cp -pRf $(top_srcdir)/$(program_dir)/$$p $(top_builddir)/$(program_dir)/$$p; \
49 rm -f $(OBJECTS) $(DEPFILES) $(BIN_PROGRAM) $(RES_PROGRAM_OBJ) core
52 # Targets to build a Mac OS X application bundle
54 bundle: $(BUNDLE)/Info.plist $(BUNDLE)/PkgInfo $(BUNDLE)/MacOS/$(PROGRAM) $(BUNDLE)/Resources/$(PROGRAM).rsrc $(BUNDLE)/Resources/$(PROGRAM).icns
56 $(BUNDLE)/Info.plist: $(top_srcdir)/src/$(TOOLKITDIR)/Info.plist.in $(BIN_PROGRAM)
57 @$(INSTALL) -d `dirname $@`
58 sed -e "s/IDENTIFIER/`echo $(program_dir) | sed 's,/,.,g'`/" \
59 -e "s/EXECUTABLE/$(PROGRAM)/" \
60 -e "s/VERSION/$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER)/" $< > $@
63 @$(INSTALL) -d `dirname $@`
64 echo -n "APPL????" > $@
66 $(BUNDLE)/MacOS/$(PROGRAM): $(BIN_PROGRAM)
67 @$(INSTALL) -d `dirname $@`
70 $(BUNDLE)/Resources/$(PROGRAM).rsrc: $(top_builddir)/lib/@WX_RESOURCES_MACOSX@
71 @$(INSTALL) -d `dirname $@`
74 $(BUNDLE)/Resources/$(PROGRAM).icns: $(top_srcdir)/src/$(TOOLKITDIR)/wxmac.icns
75 @$(INSTALL) -d `dirname $@`