summary refs log blame commit diff stats
path: root/plugins/winsys/makefile.mak
blob: 31f24eb11ff273830652af2a9d85381015e8313b (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) /DUNICODE /D_UNICODE /Zc:wchar_t- /I.. winsys.cpp

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