summary refs log blame commit diff stats
path: root/plugins/upd/makefile.mak
blob: 34b54cb8fcc940842565211c2f6efd14f0692696 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                         
                                        





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

all: upd.obj upd.def
	link $(LDFLAGS) $(LIBS) /dll /out:xcupd.dll /def:upd.def upd.obj

upd.def:
	echo EXPORTS > upd.def
	echo xchat_plugin_init >> upd.def
	echo xchat_plugin_deinit >> upd.def

upd.obj: upd.c makefile.mak
	cl $(CFLAGS) $(GLIB) /I.. upd.c

clean:
	del *.obj
	del *.dll
	del *.exp
	del *.lib