1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00
hexchat/plugins/upd/makefile.mak

19 lines
353 B
Makefile
Raw Normal View History

2010-09-06 06:43:59 -04:00
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) upd.c
clean:
del *.obj
del *.dll
del *.exp
del *.lib