From: <dat...@us...> - 2006-10-08 19:17:39
|
Revision: 17451 http://svn.sourceforge.net/gaim/?rev=17451&view=rev Author: datallah Date: 2006-10-08 12:17:32 -0700 (Sun, 08 Oct 2006) Log Message: ----------- A couple Makefile.mingw tweaks from Lee Roach. `make -f Makefile.mingw clean` will no longer delete win32-install-dir, a new "uninstall" target has been added for that purpose. The perl Makefiles "clean" target will now delete .c files generated from the .xs files. Modified Paths: -------------- trunk/Makefile.mingw trunk/gtk/plugins/perl/common/Makefile.mingw trunk/libgaim/plugins/perl/common/Makefile.mingw Modified: trunk/Makefile.mingw =================================================================== --- trunk/Makefile.mingw 2006-10-08 17:44:10 UTC (rev 17450) +++ trunk/Makefile.mingw 2006-10-08 19:17:32 UTC (rev 17451) @@ -31,7 +31,7 @@ exit; \ }' VERSION) -.PHONY: all install installer installer_nogtk installer_debug installers clean +.PHONY: all install installer installer_nogtk installer_debug installers clean uninstall all: $(GAIM_CONFIG_H) $(MAKE) -C $(GAIM_LIB_TOP) -f $(GAIM_WIN32_MAKEFILE) @@ -59,6 +59,8 @@ $(MAKE) -C $(GAIM_GTK_TOP) -f $(GAIM_WIN32_MAKEFILE) clean $(MAKE) -C $(GAIM_LIB_TOP) -f $(GAIM_WIN32_MAKEFILE) clean rm -f $(GAIM_CONFIG_H) gaim*.exe + +uninstall: rm -rf $(GAIM_INSTALL_PERLMOD_DIR) $(GAIM_INSTALL_PLUGINS_DIR) $(GAIM_INSTALL_PO_DIR) $(GAIM_INSTALL_DIR) include $(GAIM_COMMON_TARGETS) Modified: trunk/gtk/plugins/perl/common/Makefile.mingw =================================================================== --- trunk/gtk/plugins/perl/common/Makefile.mingw 2006-10-08 17:44:10 UTC (rev 17450) +++ trunk/gtk/plugins/perl/common/Makefile.mingw 2006-10-08 19:17:32 UTC (rev 17451) @@ -104,6 +104,6 @@ ## CLEAN ## clean: - rm -f *.o $(TARGET).dll + rm -f *.o $(C_FILES) $(TARGET).dll include $(GAIM_COMMON_TARGETS) Modified: trunk/libgaim/plugins/perl/common/Makefile.mingw =================================================================== --- trunk/libgaim/plugins/perl/common/Makefile.mingw 2006-10-08 17:44:10 UTC (rev 17450) +++ trunk/libgaim/plugins/perl/common/Makefile.mingw 2006-10-08 19:17:32 UTC (rev 17451) @@ -110,6 +110,7 @@ ## CLEAN ## clean: - rm -rf *.o $(TARGET).dll $(FALLBACKS) lib + rm -rf $(TARGET).dll $(FALLBACKS) lib + rm -f *.o $(C_FILES) include $(GAIM_COMMON_TARGETS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |