X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/48b1d0ff4ff220d8f2994723f936a1ffa60addce..7b9da2077d0975db6c965a85c91d5aca671ab5e3:/src/makeprog.env.in diff --git a/src/makeprog.env.in b/src/makeprog.env.in index 667568137c..91cb25337d 100644 --- a/src/makeprog.env.in +++ b/src/makeprog.env.in @@ -1,11 +1,12 @@ # Make environment for making samples on Unix -# Replace this with your own path if necessary -WXDIR = $(WXWIN) - # Clears all default suffixes .SUFFIXES: .o .cpp .c .cxx +# The binary program extension, if any, including dots (e.g. '.exe') +PROGRAM_EXT = @PROGRAM_EXT@ +BIN_PROGRAM = $(PROGRAM)$(PROGRAM_EXT) + .c.o : $(CCC) -c $(CFLAGS) -o $@ $< @@ -15,16 +16,27 @@ WXDIR = $(WXWIN) .cxx.o : $(CC) -c $(CPPFLAGS) -o $@ $< -# this is for using the samples in ../samples/xxxxx -pretop_srcdir = @top_srcdir@ -top_srcdir = ../$(pretop_srcdir) -top_builddir = ../.. -include ../../src/make.env +VPATH = :$(top_srcdir)/$(program_dir) + +# Set defaults from configure +include $(top_builddir)/src/make.env + +all: $(BIN_PROGRAM) install_dirs install_data -all: $(PROGRAM) +$(BIN_PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ + $(CC) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(EXTRALIBS) $(LDLIBS) -$(PROGRAM): $(OBJECTS) ../../lib/@WX_TARGET_LIBRARY@ - $(CC) $(LDFLAGS) -o $(PROGRAM) $(OBJECTS) $(LDLIBS) +install_dirs: + @list='$(DATADIRS)'; for p in $$list; do \ + mkdir -p $(top_builddir)/$(program_dir)/$$p; \ + done + +install_data: + @list='$(DATAFILES)'; for p in $$list; do \ + if test ! -s $(top_builddir)/$(program_dir)/$$p; then \ + cp -pRf $(top_srcdir)/$(program_dir)/$$p $(top_builddir)/$(program_dir)/$$p; \ + fi; \ + done clean: - rm -f $(OBJECTS) $(PROGRAM) core + rm -f $(OBJECTS) $(BIN_PROGRAM) core