summary refs log tree commit diff stats
path: root/plugins
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2010-11-15 09:52:14 +0100
committerberkeviktor@aol.com <berkeviktor@aol.com>2010-11-15 09:52:14 +0100
commit608eef5b78dddff936ff2dc7d9047590a572e314 (patch)
tree65ef807e86b1b79aa5a1dc9cc94ae1a09797a54f /plugins
parentc205b14721768dd1532915f8af10fbc3609d2c63 (diff)
some makefile cleanup
Diffstat (limited to 'plugins')
-rw-r--r--plugins/perl/makefile-510.mak7
-rw-r--r--plugins/perl/makefile-512.mak7
2 files changed, 6 insertions, 8 deletions
diff --git a/plugins/perl/makefile-510.mak b/plugins/perl/makefile-510.mak
index a91587d2..5a57a707 100644
--- a/plugins/perl/makefile-510.mak
+++ b/plugins/perl/makefile-510.mak
@@ -1,7 +1,6 @@
 include "..\..\src\makeinc.mak"
 
-TARGET = xcperl-510.dll
-PERLLIB = perl510
+TARGET = $(PERL510OUTPUT)
 
 all: $(TARGET)
 
@@ -12,7 +11,7 @@ perl.def:
 	echo xchat_plugin_get_info >> perl.def
 
 perl.obj: perl.c
-	$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL510PATH) /I.. /DPERL_DLL=\"$(PERLLIB).dll\"
+	$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL510PATH) /I.. /DPERL_DLL=\"$(PERL510LIB).dll\"
 
 perl.c: xchat.pm.h
 
@@ -20,7 +19,7 @@ xchat.pm.h: Xchat.pm IRC.pm
 	perl.exe generate_header
 
 $(TARGET): perl.obj perl.def
-	$(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERLLIB).lib /libpath:$(PERL510PATH) /DELAYLOAD:$(PERLLIB).dll DELAYIMP.LIB user32.lib shell32.lib advapi32.lib /def:perl.def
+	$(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERL510LIB).lib /libpath:$(PERL510PATH) /DELAYLOAD:$(PERL510LIB).dll DELAYIMP.LIB user32.lib shell32.lib advapi32.lib /def:perl.def
 
 clean:
 	@del $(TARGET)
diff --git a/plugins/perl/makefile-512.mak b/plugins/perl/makefile-512.mak
index 2ef298d8..5a714f1d 100644
--- a/plugins/perl/makefile-512.mak
+++ b/plugins/perl/makefile-512.mak
@@ -1,7 +1,6 @@
 include "..\..\src\makeinc.mak"
 
-TARGET = xcperl-512.dll
-PERLLIB = perl512
+TARGET = $(PERL512OUTPUT)
 
 all: $(TARGET)
 
@@ -12,7 +11,7 @@ perl.def:
 	echo xchat_plugin_get_info >> perl.def
 
 perl.obj: perl.c
-	$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL512PATH) /I.. /DPERL_DLL=\"$(PERLLIB).dll\"
+	$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL512PATH) /I.. /DPERL_DLL=\"$(PERL512LIB).dll\"
 
 perl.c: xchat.pm.h
 
@@ -20,7 +19,7 @@ xchat.pm.h: Xchat.pm IRC.pm
 	perl.exe generate_header
 
 $(TARGET): perl.obj perl.def
-	$(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERLLIB).lib /libpath:$(PERL512PATH) /DELAYLOAD:$(PERLLIB).dll DELAYIMP.LIB user32.lib shell32.lib advapi32.lib /def:perl.def
+	$(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERL512LIB).lib /libpath:$(PERL512PATH) /DELAYLOAD:$(PERL512LIB).dll DELAYIMP.LIB user32.lib shell32.lib advapi32.lib /def:perl.def
 
 clean:
 	@del $(TARGET)