1 # Global rules for building dll unit tests -*-Makefile-*-
3 # Each individual makefile should define the following variables:
4 # TESTDLL : the dll to test
5 # C_SRCS : list of C test programs
6 # EXTRALIBS : extra libraries to link in (optional)
7 # EXTRADEFS : extra symbol definitions, like -DWINELIB (optional)
9 # plus all variables required by the global Make.rules.in
13 DEFS = -DWINE_STRICT_PROTOTYPES $(EXTRADEFS)
15 MODULE = $(TESTDLL:%.dll=%)_test.exe
16 TESTRESULTS = $(C_SRCS:.c=.ok)
17 TESTPROGRAM = $(MODULE)$(DLLEXT)
18 RUNTESTFLAGS = -q -P wine -M $(TESTDLL) -T $(TOPOBJDIR) -p $(TESTPROGRAM)
20 ALL_LIBS = $(IMPORTS:%=-l%) $(EXTRALIBS) $(LDFLAGS) $(LIBS)
21 EXTRA_OBJS = testlist.o
23 CROSSTEST = $(TESTDLL:%.dll=%)_crosstest.exe
24 MAKEDEPFLAGS = -xo -xcross.o
30 $(MODULE) $(MODULE).so: $(OBJS) Makefile.in
31 $(WINEGCC) $(APPMODE) $(OBJS) -o $@ $(LIBPORT) $(ALL_LIBS)
33 .PHONY: check test testclean crosstest
35 # Rules for building test list
37 testlist.c: Makefile.in $(MAKECTESTS)
38 $(MAKECTESTS) -o $@ $(C_SRCS)
40 testlist.o: testlist.c $(TOPSRCDIR)/include/wine/test.h
44 check test:: $(TESTRESULTS)
46 $(TESTRESULTS): $(MODULE)$(DLLEXT) ../$(TESTDLL)$(DLLEXT)
48 # Rules for cross-compiling tests
50 crosstest:: @CROSSTEST@
52 $(CROSSTEST): $(CROSSOBJS) Makefile.in
53 $(CROSSWINEGCC) $(CROSSOBJS) -o $@ $(ALL_LIBS)
61 $(RM) testlist.c $(MODULE) $(TESTRESULTS) $(CROSSTEST)