summary refs log blame commit diff stats
path: root/plugins/winsys/makefile.mak
blob: cb480ac02e7d313b4e12bcede8883a0a32971c91 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                
                                                                                                                                      





                                               

                                                          





                  
include "..\..\src\makeinc.mak"

all: winsys.obj winsys.def
	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.cpp makefile.mak
	cl $(CFLAGS) $(GLIB) /Zc:wchar_t- /I.. winsys.cpp

clean:
	del *.obj
	del *.dll
	del *.exp
	del *.lib