diff options
author | Günther Deschner <gd@samba.org> | 2009-12-16 22:36:18 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-01-08 01:04:19 +0100 |
commit | 339afda877138ebe3869aa971361b88f196ff9d8 (patch) | |
tree | d365d35b1f37b9581fbb25b242584163f238c3f0 /testprogs/win32/spoolss/Makefile | |
parent | 9185fd0a93e2530c778b7d31f90311f8618b4fb7 (diff) | |
download | samba-339afda877138ebe3869aa971361b88f196ff9d8.tar.gz samba-339afda877138ebe3869aa971361b88f196ff9d8.tar.bz2 samba-339afda877138ebe3869aa971361b88f196ff9d8.zip |
testprogs: add support for "print" option in win32 spoolss torture test.
Guenther
Diffstat (limited to 'testprogs/win32/spoolss/Makefile')
-rw-r--r-- | testprogs/win32/spoolss/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testprogs/win32/spoolss/Makefile b/testprogs/win32/spoolss/Makefile index 96efceacf4..8c9d71683e 100644 --- a/testprogs/win32/spoolss/Makefile +++ b/testprogs/win32/spoolss/Makefile @@ -22,6 +22,8 @@ cleantmp: # helpers ############################### +printlib.obj: printlib.c + error.obj: error.c torture.obj: torture.c @@ -32,7 +34,7 @@ torture.obj: torture.c spoolss.obj: spoolss.c -spoolss.exe: spoolss.obj error.obj torture.obj - cl $(CFLAGS) /Fe$@ spoolss.obj error.obj torture.obj \ +spoolss.exe: spoolss.obj printlib.obj error.obj torture.obj + cl $(CFLAGS) /Fe$@ spoolss.obj printlib.obj error.obj torture.obj \ /link /incremental:no /subsystem:console $(LIBS) $(WINSPOOL_LIBS) |