summary refs log tree commit diff stats
path: root/plugins/perl
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/perl')
-rw-r--r--plugins/perl/makefile-510.mak36
-rw-r--r--plugins/perl/makefile-512.mak36
-rw-r--r--plugins/perl/makefile-58.mak (renamed from plugins/perl/makefile.mak)9
3 files changed, 80 insertions, 1 deletions
diff --git a/plugins/perl/makefile-510.mak b/plugins/perl/makefile-510.mak
new file mode 100644
index 00000000..4cb8b550
--- /dev/null
+++ b/plugins/perl/makefile-510.mak
@@ -0,0 +1,36 @@
+include "..\..\src\makeinc.mak"
+
+TARGET = xcperl-510.dll
+PERLLIB = perl510
+
+!ifdef X64
+PERLPATH = c:\mozilla-build\perl-5.10-x64\lib\CORE
+!else
+PERLPATH = c:\mozilla-build\perl-5.10-x86\lib\CORE
+!endif
+
+all: $(TARGET)
+
+perl.def:
+	echo EXPORTS > perl.def
+	echo xchat_plugin_init >> perl.def
+	echo xchat_plugin_deinit >> perl.def
+	echo xchat_plugin_get_info >> perl.def
+
+perl.obj: perl.c
+	$(CC) $(CFLAGS) perl.c $(GLIB) -I$(PERLPATH) -DPERL_DLL=\"$(PERLLIB).dll\"
+
+perl.c: xchat.pm.h
+
+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:$(PERLPATH) /DELAYLOAD:$(PERLLIB).dll DELAYIMP.LIB user32.lib shell32.lib advapi32.lib /def:perl.def
+
+clean:
+	del $(TARGET)
+	del *.obj
+	del perl.def
+	del *.lib
+	del *.exp
diff --git a/plugins/perl/makefile-512.mak b/plugins/perl/makefile-512.mak
new file mode 100644
index 00000000..10ee054d
--- /dev/null
+++ b/plugins/perl/makefile-512.mak
@@ -0,0 +1,36 @@
+include "..\..\src\makeinc.mak"
+
+TARGET = xcperl-512.dll
+PERLLIB = perl512
+
+!ifdef X64
+PERLPATH = c:\mozilla-build\perl-5.12-x64\lib\CORE
+!else
+PERLPATH = c:\mozilla-build\perl-5.12-x86\lib\CORE
+!endif
+
+all: $(TARGET)
+
+perl.def:
+	echo EXPORTS > perl.def
+	echo xchat_plugin_init >> perl.def
+	echo xchat_plugin_deinit >> perl.def
+	echo xchat_plugin_get_info >> perl.def
+
+perl.obj: perl.c
+	$(CC) $(CFLAGS) perl.c $(GLIB) -I$(PERLPATH) -DPERL_DLL=\"$(PERLLIB).dll\"
+
+perl.c: xchat.pm.h
+
+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:$(PERLPATH) /DELAYLOAD:$(PERLLIB).dll DELAYIMP.LIB user32.lib shell32.lib advapi32.lib /def:perl.def
+
+clean:
+	del $(TARGET)
+	del *.obj
+	del perl.def
+	del *.lib
+	del *.exp
diff --git a/plugins/perl/makefile.mak b/plugins/perl/makefile-58.mak
index fd54f458..e26c6220 100644
--- a/plugins/perl/makefile.mak
+++ b/plugins/perl/makefile-58.mak
@@ -1,6 +1,13 @@
 include "..\..\src\makeinc.mak"
 
-TARGET = $(PERLOUTPUT)
+TARGET = xcperl-58.dll
+PERLLIB = perl58
+
+!ifdef X64
+PERLPATH = c:\mozilla-build\perl-5.8-x64\lib\CORE
+!else
+PERLPATH = c:\mozilla-build\perl-5.8-x86\lib\CORE
+!endif
 
 all: $(TARGET)