changeset 5468:809ef68273c8

[gaim-migrate @ 5860] Perl plugin loader added committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Wed, 21 May 2003 15:54:22 +0000
parents 95e1e9ed82cc
children df653f6f2978
files plugins/Makefile.mingw
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/Makefile.mingw	Wed May 21 15:53:01 2003 +0000
+++ b/plugins/Makefile.mingw	Wed May 21 15:54:22 2003 +0000
@@ -16,6 +16,7 @@
 TICKER :=		./ticker
 TRANSPARENCY :=		./win32/transparency
 WINPREFS :=		./win32/winprefs
+PERL_PLUGIN_LOADER :=	./perl
 
 ##
 ## VARIABLE DEFINITIONS
@@ -77,12 +78,14 @@
 	$(MAKE) -C $(TICKER) -f Makefile.mingw
 	$(MAKE) -C $(WINPREFS) -f Makefile.mingw
 	$(MAKE) -C $(TRANSPARENCY) -f Makefile.mingw
+	$(MAKE) -C $(PERL_PLUGIN_LOADER) -f Makefile.mingw
 
 install:
 	cp $(GAIM_PLUGINS)/*.dll $(GAIM_INSTALL_DIR)/plugins
 	$(MAKE) -C $(TICKER) -f Makefile.mingw install
 	$(MAKE) -C $(WINPREFS) -f Makefile.mingw install
 	$(MAKE) -C $(TRANSPARENCY) -f Makefile.mingw install
+	$(MAKE) -C $(PERL_PLUGIN_LOADER) -f Makefile.mingw install
 
 #
 # BUILD Plugin
@@ -109,3 +112,4 @@
 	$(MAKE) -C $(TICKER) -f Makefile.mingw clean
 	$(MAKE) -C $(TRANSPARENCY) -f Makefile.mingw clean
 	$(MAKE) -C $(WINPREFS) -f Makefile.mingw clean
+	$(MAKE) -C $(PERL_PLUGIN_LOADER) -f Makefile.mingw clean