1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00
hexchat/plugins/upd/makefile.mak
2011-02-28 18:59:32 +01:00

19 lines
358 B
Makefile

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