1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00
hexchat/plugins/doat/makefile.mak
2011-11-22 17:58:00 +01:00

19 lines
370 B
Makefile

include "..\..\src\makeinc.mak"
all: doat.obj doat.def
link $(LDFLAGS) $(LIBS) /dll /out:xcdoat.dll /def:doat.def doat.obj
doat.def:
echo EXPORTS > doat.def
echo xchat_plugin_init >> doat.def
echo xchat_plugin_deinit >> doat.def
doat.obj: doat.c makefile.mak
cl $(CFLAGS) $(GLIB) /I.. doat.c
clean:
del *.obj
del *.dll
del *.exp
del *.lib