diff options
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) |