]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/Makefile.in
Applied patch by Dimitrie O. Paun <dpaun@rogers.com> to get configure
[wxWidgets.git] / utils / Makefile.in
index e77831c147e2bc8c7b237a87f52e088de7b8c64d..ebec162d1232741f9ff6ccee0c4a907974dc6292 100644 (file)
@@ -20,20 +20,32 @@ DESTDIR =
 
 ### Targets: ###
 
 
 ### Targets: ###
 
-all: tex2rtf helpgen
+all: configtool emulator helpview tex2rtf helpgen
 
 clean: 
        rm -rf ./.deps ./.pch
        rm -f ./*.o
 
 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)
 
        (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
 
 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)
 
 helpgen: 
        (cd HelpGen && $(MAKE) all)
 
+helpview: 
+       (cd helpview/src && $(MAKE) all)
+
 install: all
        (cd tex2rtf/src && $(MAKE) install)
        (cd HelpGen && $(MAKE) install)
 install: all
        (cd tex2rtf/src && $(MAKE) install)
        (cd HelpGen && $(MAKE) install)
@@ -51,4 +63,4 @@ uninstall:
 # Include dependency info, if present:
 @IF_GNU_MAKE@-include .deps/*.d
 
 # 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