diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-05-19 11:10:36 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-05-19 11:12:53 +0200 |
commit | b00acc81fb79fcea30710349ef6152d3104f1423 (patch) | |
tree | cf50b3e88718d58e2d95efedd96570ef674c2781 /testprogs/win32/spoolss/NMakefile | |
parent | 572e5dec1bbd4af3ccc4b8bfe56a72ded4c9aa6e (diff) | |
download | samba-b00acc81fb79fcea30710349ef6152d3104f1423.tar.gz samba-b00acc81fb79fcea30710349ef6152d3104f1423.tar.bz2 samba-b00acc81fb79fcea30710349ef6152d3104f1423.zip |
testprogs/win32/spoolss: rename Makefile => NMakefile
metze
Diffstat (limited to 'testprogs/win32/spoolss/NMakefile')
-rw-r--r-- | testprogs/win32/spoolss/NMakefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/testprogs/win32/spoolss/NMakefile b/testprogs/win32/spoolss/NMakefile new file mode 100644 index 0000000000..5e984d43b1 --- /dev/null +++ b/testprogs/win32/spoolss/NMakefile @@ -0,0 +1,40 @@ +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: testspoolss.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 +############################### + +printlib.obj: printlib.c + +error.obj: error.c + +torture.obj: torture.c + +############################### +# binaries +############################### + +testspoolss.obj: testspoolss.c + +testspoolss.exe: testspoolss.obj printlib.obj error.obj torture.obj + cl $(CFLAGS) /Fe$@ testspoolss.obj printlib.obj error.obj torture.obj \ + /link /incremental:no /subsystem:console $(LIBS) $(WINSPOOL_LIBS) + |