X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ac2def68edf450f51483c8d78dbc2890dd6985bc..58b3bdc93386b60b19de974277c92f0badca6d5d:/src/makeprog.env.in diff --git a/src/makeprog.env.in b/src/makeprog.env.in index 64c3fe8048..8e64d3f9db 100644 --- a/src/makeprog.env.in +++ b/src/makeprog.env.in @@ -3,6 +3,12 @@ # 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) +RES_PROGRAM = $(PROGRAM)_resources.o +RES_PROGRAM_OPT = @RESPROGRAM@ + .c.o : $(CCC) -c $(CFLAGS) -o $@ $< @@ -12,15 +18,21 @@ .cxx.o : $(CC) -c $(CPPFLAGS) -o $@ $< -VPATH = :$(top_srcdir)/$(program_dir) +# the comment at the end of the next line is needed because otherwise autoconf +# would remove this line completely - it contains a built-in hack to remove +# any VPATH assignment not containing ':' +VPATH = @PATH_IFS@$(top_srcdir)/$(program_dir) # ':' for autoconf # Set defaults from configure include $(top_builddir)/src/make.env -all: $(PROGRAM) install_dirs install_data +all: $(BIN_PROGRAM) install_dirs install_data + +$(BIN_PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(RES_PROGRAM_OPT) + $(CC) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(LDLIBS) $(LIBRARIES) $(RES_PROGRAM_OPT) -$(PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ - $(CC) $(LDFLAGS) -o $(PROGRAM) $(OBJECTS) $(EXTRALIBS) $(LDLIBS) +$(RES_PROGRAM): $(PROGRAM).rc + $(RESCOMP) $(RCINPUTSWITCH) $(top_srcdir)/$(program_dir)/$(PROGRAM).rc $(RCOUTPUTSWITCH) $(PROGRAM)_resources.o $(RESFLAGS) install_dirs: @list='$(DATADIRS)'; for p in $$list; do \ @@ -30,9 +42,9 @@ install_dirs: install_data: @list='$(DATAFILES)'; for p in $$list; do \ if test ! -s $(top_builddir)/$(program_dir)/$$p; then \ - cp -u $(top_srcdir)/$(program_dir)/$$p $(top_builddir)/$(program_dir)/$$p; \ + 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) $(RES_PROGRAM) core