summaryrefslogtreecommitdiff
path: root/CmdLine/CmdLineps.mk
blob: 4ac65de2a0ce02817ddc42a3bca1ddaeab13c5a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

CmdLineps.dll: dlldata.obj CmdLine_p.obj CmdLine_i.obj
	link /dll /out:CmdLineps.dll /def:CmdLineps.def /entry:DllMain dlldata.obj CmdLine_p.obj CmdLine_i.obj \
		kernel32.lib rpcndr.lib rpcns4.lib rpcrt4.lib oleaut32.lib uuid.lib \

.c.obj:
	cl /c /Ox /DWIN32 /D_WIN32_WINNT=0x0400 /DREGISTER_PROXY_DLL \
		$<

clean:
	@del CmdLineps.dll
	@del CmdLineps.lib
	@del CmdLineps.exp
	@del dlldata.obj
	@del CmdLine_p.obj
	@del CmdLine_i.obj