]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/Makefile.in
compilation fix for tooltip patch code applied by Julian and w32api
[wxWidgets.git] / utils / Makefile.in
index c1c5db0179205609c34c133df0aa7b27fab80fbf..ebec162d1232741f9ff6ccee0c4a907974dc6292 100644 (file)
@@ -13,26 +13,39 @@ INSTALL = @INSTALL@
 
 ### Variables: ###
 
+DESTDIR = 
 
 ### Conditionally set variables: ###
 
 
 ### Targets: ###
 
-all: tex2rtf helpgen
+all: configtool emulator helpview tex2rtf helpgen
 
 clean: 
        rm -rf ./.deps ./.pch
        rm -f ./*.o
+       (cd configtool/src && $(MAKE) clean)
+       (cd emulator/src && $(MAKE) clean)
+       (cd helpview/src && $(MAKE) clean)
        (cd tex2rtf/src && $(MAKE) clean)
        (cd HelpGen && $(MAKE) clean)
 
+configtool: 
+       (cd configtool/src && $(MAKE) all)
+
 distclean: clean
        rm -f configure config.cache config.log config.status bk-deps bk-make-pch shared-ld-sh Makefile
 
+emulator: 
+       (cd emulator/src && $(MAKE) all)
+
 helpgen: 
        (cd HelpGen && $(MAKE) all)
 
+helpview: 
+       (cd helpview/src && $(MAKE) all)
+
 install: all
        (cd tex2rtf/src && $(MAKE) install)
        (cd HelpGen && $(MAKE) install)
@@ -50,4 +63,4 @@ uninstall:
 # Include dependency info, if present:
 @IF_GNU_MAKE@-include .deps/*.d
 
-.PHONY: all clean distclean helpgen install tex2rtf uninstall
+.PHONY: all clean configtool distclean emulator helpgen helpview install tex2rtf uninstall