X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/42b4e99e9a72c259e6a4d24b7e9cd5a3129a990f..642163b5a0b9e6147b21f759abb47284ec637765:/src/makeprog.env.in?ds=inline

diff --git a/src/makeprog.env.in b/src/makeprog.env.in
index 03b947813f..fd1a312885 100644
--- a/src/makeprog.env.in
+++ b/src/makeprog.env.in
@@ -1,26 +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@
 
-.c.o :
-	$(CCC) -c $(CFLAGS) -o $@ $<
+%.o : %.c
+	$(CC) -c $(CFLAGS) $(APPEXTRADEFS) -o $@ $<
 
-.cpp.o :
-	$(CC) -c $(CPPFLAGS) -o $@ $<
+%.o : %.cpp
+	$(CXX) -c $(CXXFLAGS) $(APPEXTRADEFS) -o $@ $<
 
-.cxx.o :
-	$(CC) -c $(CPPFLAGS) -o $@ $<
+%.o : %.cxx
+	$(CXX) -c $(CXXFLAGS) $(APPEXTRADEFS) -o $@ $<
 
-VPATH = :$(top_srcdir)/$(program_dir)
+%_resources.o : %.rc
+	$(RESCOMP) -i $< -o $@ $(RESFLAGS)
+
+
+# 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_OBJ) @LIBWXMACRES@
+	$(CXX) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(LDLIBS) $(LIBRARIES) $(RES_PROGRAM_OBJ)
+	@LIBWXMACRESCOMP@
 
-$(PROGRAM):	$(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@
-	$(CC) $(LDFLAGS) -o $(PROGRAM) $(OBJECTS) $(EXTRALIBS) $(LDLIBS)
 
 install_dirs:
 	@list='$(DATADIRS)'; for p in $$list; do \
@@ -29,10 +40,11 @@ install_dirs:
 	
 install_data:
 	@list='$(DATAFILES)'; for p in $$list; do \
-	  if test ! -e $(top_builddir)/$(program_dir)/Makefile.in; then \
-	     cp -u $(top_srcdir)/$(program_dir)/$$p $(top_builddir)/$(program_dir)/$$p; \
+	  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) $(DEPFILES) $(BIN_PROGRAM) $(RES_PROGRAM_OBJ) core
+