X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/80d895cd3f624f28424cc45b9b516bf439da9c19..a0145564d0f04b2815cc66259c3fa245432fd51a:/src/makeprog.env.in diff --git a/src/makeprog.env.in b/src/makeprog.env.in index d02d3a75f8..fd1a312885 100644 --- a/src/makeprog.env.in +++ b/src/makeprog.env.in @@ -1,30 +1,37 @@ # Make environment for making samples on Unix -# 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_OBJ = @RESPROGRAMOBJ@ + +%.o : %.c + $(CC) -c $(CFLAGS) $(APPEXTRADEFS) -o $@ $< + +%.o : %.cpp + $(CXX) -c $(CXXFLAGS) $(APPEXTRADEFS) -o $@ $< -.c.o : - $(CCC) -c $(CFLAGS) -o $@ $< +%.o : %.cxx + $(CXX) -c $(CXXFLAGS) $(APPEXTRADEFS) -o $@ $< -.cpp.o : - $(CC) -c $(CPPFLAGS) -o $@ $< +%_resources.o : %.rc + $(RESCOMP) -i $< -o $@ $(RESFLAGS) -.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: $(BIN_PROGRAM) install_dirs install_data -$(BIN_PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ - $(CC) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(EXTRALIBS) $(LDLIBS) +$(BIN_PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(RES_PROGRAM_OBJ) @LIBWXMACRES@ + $(CXX) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(LDLIBS) $(LIBRARIES) $(RES_PROGRAM_OBJ) + @LIBWXMACRESCOMP@ + install_dirs: @list='$(DATADIRS)'; for p in $$list; do \ @@ -34,9 +41,10 @@ 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) $(BIN_PROGRAM) core + rm -f $(OBJECTS) $(DEPFILES) $(BIN_PROGRAM) $(RES_PROGRAM_OBJ) core +