mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 21:22:38 +01:00
37 lines
816 B
Makefile
37 lines
816 B
Makefile
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
|