1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-04 08:25:03 -05:00
hexchat/plugins/winsys/makefile.mak

19 lines
484 B
Makefile
Raw Normal View History

include "..\..\src\makeinc.mak"
all: winsys.obj winsys.def
2011-11-28 14:42:10 -05:00
link $(LDFLAGS) $(LIBS) /NODEFAULTLIB:comsupp.lib wbemuuid.lib vccomsup.lib /dll /out:xcwinsys.dll /def:winsys.def winsys.obj
winsys.def:
echo EXPORTS > winsys.def
echo xchat_plugin_init >> winsys.def
echo xchat_plugin_deinit >> winsys.def
2011-11-28 14:42:10 -05:00
winsys.obj: winsys.cpp makefile.mak
2011-11-28 16:54:17 -05:00
cl $(CFLAGS) $(GLIB) /DUNICODE /D_UNICODE /Zc:wchar_t- /I.. winsys.cpp
clean:
del *.obj
del *.dll
del *.exp
del *.lib