Thanks to Lucho, text support in samples now starts to
[wine/dcerpc.git] / dlls / Maketest.rules.in
blob6a74a29788c0ff4e389ac16eaf9658b399b3fb60
1 # Global rules for building dll unit tests     -*-Makefile-*-
3 # Each individual makefile should define the following variables:
4 # DLLTEST      : the dll to test
5 # CTESTS       : 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
12 DEFS         = @DLLFLAGS@ -DNONAMELESSUNION -DNONAMELESSSTRUCT $(EXTRADEFS)
13 LDDLLFLAGS   = @LDDLLFLAGS@
15 MODULE       = $(TESTDLL:%.dll=%)_test.exe
16 TESTLIST     = testlist.c
17 TESTRESULTS  = $(CTESTS:.c=.ok)
18 TESTPROGRAM  = $(MODULE)$(DLLEXT)
19 RUNTESTFLAGS = -q -P wine -M $(TESTDLL) -T $(TOPOBJDIR) -p $(TESTPROGRAM)
21 C_SRCS       = $(CTESTS)
22 EXTRA_SRCS   = $(TESTLIST)
23 EXTRA_OBJS   = $(TESTLIST:.c=.o)
24 ALL_LIBS     = $(LIBWINE) $(EXTRALIBS) $(LIBS)
26 CROSSTEST    = $(TESTDLL:%.dll=%)_crosstest.exe
27 CROSSOBJS    = $(C_SRCS:.c=.cross.o) $(TESTLIST:.c=.cross.o)
29 @MAKE_RULES@
31 all: $(TESTPROGRAM)
33 # Rule for main module spec file
35 $(MODULE).spec.c: $(RC_SRCS:.rc=.res) $(OBJS) $(WINEBUILD)
36         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ -exe $(MODULE) -mcui $(RC_SRCS:.rc=.res) $(OBJS) -L$(DLLDIR) -L.. $(DELAYIMPORTS:%=-d%) $(IMPORTS:%=-l%)
38 # Rules for .so main module
40 $(MODULE).so: $(MODULE).spec.o $(OBJS) Makefile.in
41         $(LDSHARED) $(LDDLLFLAGS) $(MODULE).spec.o $(OBJS) -o $@ $(ALL_LIBS) -lc
43 # Rules for .exe main module
45 $(MODULE): $(OBJS) $(RCOBJS) Makefile.in
46         $(CC) $(OBJS) $(RCOBJS) -o $@ $(DELAYIMPORTS:%=-l%) $(IMPORTS:%=-l%) $(ALL_LIBS)
48 # Rules for building test list
50 $(TESTLIST): Makefile.in
51         $(TOPSRCDIR)/tools/make_ctests $(CTESTS) >$(TESTLIST) || $(RM) $(TESTLIST)
53 depend: $(TESTLIST)
55 # Rules for testing
57 check test:: $(TESTRESULTS) $(SUBDIRS:%=%/__test__)
59 $(TESTRESULTS): $(MODULE)$(DLLEXT) $(TOPOBJDIR)/dlls/$(TESTDLL)$(DLLEXT)
61 # Rules for cross-compiling tests
63 crosstest:: @CROSSTEST@
65 $(CROSSTEST): $(CROSSOBJS) Makefile.in
66         $(CROSSCC) $(CROSSOBJS) -o $@ $(DELAYIMPORTS:%=-l%) $(IMPORTS:%=-l%) $(LIBS)
68 # Rules for cleaning
70 testclean::
71         $(RM) $(TESTRESULTS)
73 clean::
74         $(RM) $(MODULE) $(TESTLIST) $(TESTRESULTS) $(CROSSTEST)