diff options
author | Günther Deschner <gd@samba.org> | 2009-12-14 23:54:42 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-01-08 01:03:34 +0100 |
commit | 487a03a1586e478baaadada184836be98c609aa0 (patch) | |
tree | 15c26cd7ff3bbc64d3346cb6af31550311db97ca /testprogs/win32/spoolss/Makefile | |
parent | 57be1d07afc2a0725b79327636204a9238ab94aa (diff) | |
download | samba-487a03a1586e478baaadada184836be98c609aa0.tar.gz samba-487a03a1586e478baaadada184836be98c609aa0.tar.bz2 samba-487a03a1586e478baaadada184836be98c609aa0.zip |
testprogs: add win32 spoolss testsuite.
Guenther
Diffstat (limited to 'testprogs/win32/spoolss/Makefile')
-rw-r--r-- | testprogs/win32/spoolss/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testprogs/win32/spoolss/Makefile b/testprogs/win32/spoolss/Makefile new file mode 100644 index 0000000000..96efceacf4 --- /dev/null +++ b/testprogs/win32/spoolss/Makefile @@ -0,0 +1,38 @@ +CFLAGS = /nologo /Zi /MT /Gm- /W4 /FR /D_CRT_SECURE_NO_WARNINGS +LIBS = kernel32.lib gdi32.lib user32.lib shell32.lib \ + advapi32.lib ole32.lib ws2_32.lib rpcrt4.lib +WINSPOOL_LIBS = winspool.lib + +all: spoolss.exe + +.cpp.obj: + cl /c $(CFLAGS) $*.cpp + +.c.obj: + cl /c $(CFLAGS) $*.c + +clean: cleantmp + -del *.dll 2>nul + +cleantmp: + -del *~ *.o *.obj *.sbr *.bsc *.pdb *.lib *.ilk *.exp 2>nul + -del test_s.c test_c.c test.h 2>nul + +############################### +# helpers +############################### + +error.obj: error.c + +torture.obj: torture.c + +############################### +# binaries +############################### + +spoolss.obj: spoolss.c + +spoolss.exe: spoolss.obj error.obj torture.obj + cl $(CFLAGS) /Fe$@ spoolss.obj error.obj torture.obj \ + /link /incremental:no /subsystem:console $(LIBS) $(WINSPOOL_LIBS) + |