more winsys fixes and build as c++

This commit is contained in:
Berke Viktor 2011-11-28 20:42:10 +01:00
parent 7116b36d87
commit 5f758e821a
2 changed files with 3 additions and 3 deletions

View File

@ -1,15 +1,15 @@
include "..\..\src\makeinc.mak"
all: winsys.obj winsys.def
link $(LDFLAGS) $(LIBS) wbemuuid.lib /dll /out:xcwinsys.dll /def:winsys.def winsys.obj
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
winsys.obj: winsys.c makefile.mak
cl $(CFLAGS) $(GLIB) /Zc:wchar_t- /I.. winsys.c
winsys.obj: winsys.cpp makefile.mak
cl $(CFLAGS) $(GLIB) /Zc:wchar_t- /I.. winsys.cpp
clean:
del *.obj