summary refs log tree commit diff stats
path: root/share
AgeCommit message (Expand)Author
2012-10-27Update share/misc/hexchat.specTingPing
2012-10-27Convert HACKING to Markdown formatBerke Viktor
2012-10-27updated specTingPing
2012-10-27Use Unix EOL for docsBerke Viktor
2012-10-26Converting, renaming, relocatingBerke Viktor
p;id=df49b9412d3ee3ffd1cacef7f0f844d10c4c31b9'>df49b941 ^
c7ec88c8 ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29




















                                                                                       
                                                                                                                                                                                    






                     
include "..\..\src\makeinc.mak"

TARGET = $(PERLOUTPUT)

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.. -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