makefiles: Don't allow extra libraries in tests.

oldstable
Alexandre Julliard 2013-07-10 16:49:38 +02:00
parent 964778fda5
commit 788cd8090c
2 changed files with 2 additions and 4 deletions

View File

@ -3,7 +3,6 @@
# Each individual makefile should define the following variables:
# TESTDLL : the dll to test
# C_SRCS : list of C test programs
# EXTRALIBS : extra libraries to link in (optional)
# EXTRADEFS : extra symbol definitions, like -DWINELIB (optional)
#
# plus all variables required by the global Make.rules.in
@ -19,7 +18,7 @@ WINETEST_EXE = $(TESTDLL:%.dll=%)_test-stripped.exe$(DLLEXT)
WINETEST_RES = $(top_builddir)/programs/winetest/$(TESTDLL:%.dll=%)_test.res
RUNTESTFLAGS = -q -P wine -M $(TESTDLL) -T $(top_builddir) -p $(TESTPROGRAM)
ALL_LIBS = $(IMPORTS:%=-l%) $(EXTRALIBS) $(LDFLAGS) $(LIBS)
ALL_LIBS = $(IMPORTS:%=-l%) $(LDFLAGS) $(LIBS)
EXTRA_OBJS = testlist.o
CROSSTEST = $(TESTDLL:%.dll=%)_crosstest.exe

View File

@ -1,7 +1,6 @@
EXTRADEFS = -DCOM_NO_WINDOWS_H
TESTDLL = sti.dll
IMPORTS = ole32
EXTRALIBS = -luuid
IMPORTS = uuid ole32
C_SRCS = \
sti.c