Move TESTLIST from EXTRA_SRCS to C_SRCS in test makefiles to free up

EXTRA_SRCS for other purposes.
This commit is contained in:
Robert Shearman 2005-08-02 14:36:13 +00:00 committed by Alexandre Julliard
parent 7f66a3dc7f
commit 078201608a
1 changed files with 2 additions and 4 deletions

View File

@ -19,14 +19,12 @@ TESTRESULTS = $(CTESTS:.c=.ok)
TESTPROGRAM = $(MODULE)$(DLLEXT)
RUNTESTFLAGS = -q -P wine -M $(TESTDLL) -T $(TOPOBJDIR) -p $(TESTPROGRAM)
C_SRCS = $(CTESTS)
EXTRA_SRCS = $(TESTLIST)
EXTRA_OBJS = $(TESTLIST:.c=.o)
C_SRCS = $(CTESTS) $(TESTLIST)
ALL_LIBS = $(IMPORTS:%=-l%) $(EXTRALIBS) $(LDFLAGS) $(LIBS)
DLL_LDPATH = -L$(DLLDIR) $(IMPORTS:%=-L$(DLLDIR)/%)
CROSSTEST = $(TESTDLL:%.dll=%)_crosstest.exe
CROSSOBJS = $(C_SRCS:.c=.cross.o) $(RC_SRCS:.rc=.res.cross.o) $(TESTLIST:.c=.cross.o)
CROSSOBJS = $(C_SRCS:.c=.cross.o) $(RC_SRCS:.rc=.res.cross.o)
CROSSCC = @CROSSCC@
CROSSWINDRES = @CROSSWINDRES@