summaryrefslogtreecommitdiff
path: root/testprogs/win32/spoolss/Makefile
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-05-10 11:01:54 +0200
committerGünther Deschner <gd@samba.org>2010-05-10 11:50:25 +0200
commiteb28a761e910f0ffec118ffd3a16ef4971da1232 (patch)
tree8daf1a891e05d4cb3ca54a6101b7d95e5eb24e91 /testprogs/win32/spoolss/Makefile
parent7887d99a60387e93ce5ce4a3bfe9117939d1e4c8 (diff)
downloadsamba-eb28a761e910f0ffec118ffd3a16ef4971da1232.tar.gz
samba-eb28a761e910f0ffec118ffd3a16ef4971da1232.tar.bz2
samba-eb28a761e910f0ffec118ffd3a16ef4971da1232.zip
testprogs: rename spoolss.exe to testspoolss.exe.
Patch from Kurt Pfeifle <Kurt.Pfeifle@ricoh.de>. Guenther
Diffstat (limited to 'testprogs/win32/spoolss/Makefile')
-rw-r--r--testprogs/win32/spoolss/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/testprogs/win32/spoolss/Makefile b/testprogs/win32/spoolss/Makefile
index 8c9d71683e..5e984d43b1 100644
--- a/testprogs/win32/spoolss/Makefile
+++ b/testprogs/win32/spoolss/Makefile
@@ -3,7 +3,7 @@ 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
+all: testspoolss.exe
.cpp.obj:
cl /c $(CFLAGS) $*.cpp
@@ -32,9 +32,9 @@ torture.obj: torture.c
# binaries
###############################
-spoolss.obj: spoolss.c
+testspoolss.obj: testspoolss.c
-spoolss.exe: spoolss.obj printlib.obj error.obj torture.obj
- cl $(CFLAGS) /Fe$@ spoolss.obj printlib.obj error.obj torture.obj \
+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)