Skip to content
Snippets Groups Projects
Commit 9c2f2cdb authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

makes it possible to have custom module_testsuite generation

Rev: src/modules/dynamic_module_makefile.in:1.35
Rev: src/modules/static_module_makefile.in:1.28
parent 80e70407
No related branches found
No related tags found
No related merge requests found
#
# $Id: dynamic_module_makefile.in,v 1.34 1998/04/29 20:52:22 mirar Exp $
# $Id: dynamic_module_makefile.in,v 1.35 1998/04/29 22:20:48 hubbe Exp $
#
......@@ -52,8 +52,8 @@ depend:
for a in '' $(MODULE_SUBDIRS) ; do if test ! -z "$$a"; then echo making depend in $$a ; ( cd $$a ; $(MAKE) $(MAKE_FLAGS) depend ) ; else :; fi ; done
#verify / debug
module_testsuite: $(SRCDIR)/testsuite.in
if test -f $(SRCDIR)/module_testsuite.in; then cp $(SRCDIR)/module_testsuite.in module_testsuite; else $(TMP_BINDIR)/mktestsuite $(SRCDIR)/testsuite.in >module_testsuite -DSRCDIR=$(SRCDIR); fi
module_testsuite: $(SRCDIR)/testsuite.in $(REAL_TESTSUITE)
if test "x$(REAL_TESTSUITE)" != x ; then cp $(SRCDIR)/$(REAL_TESTSUITE module_testsuite; else $(TMP_BINDIR)/mktestsuite $(SRCDIR)/testsuite.in >module_testsuite -DSRCDIR=$(SRCDIR); fi
extra_tests: $(MODULE_TESTS)
......
#
# $Id: static_module_makefile.in,v 1.27 1998/04/16 01:12:53 hubbe Exp $
# $Id: static_module_makefile.in,v 1.28 1998/04/29 22:20:48 hubbe Exp $
#
......@@ -60,8 +60,8 @@ depend:
for a in '' $(MODULE_SUBDIRS) ; do if test ! -z "$$a"; then echo making depend in $$a ; ( cd $$a ; $(MAKE) $(MAKE_FLAGS) depend ) ; else :; fi ; done
#verify / debug
module_testsuite: $(SRCDIR)/testsuite.in
$(TMP_BINDIR)/mktestsuite $(SRCDIR)/testsuite.in >module_testsuite -DSRCDIR=$(SRCDIR)
module_testsuite: $(SRCDIR)/testsuite.in $(REAL_TESTSUITE)
if test "x$(REAL_TESTSUITE)" != x ; then cp $(SRCDIR)/$(REAL_TESTSUITE module_testsuite; else $(TMP_BINDIR)/mktestsuite $(SRCDIR)/testsuite.in >module_testsuite -DSRCDIR=$(SRCDIR); fi
extra_tests: $(MODULE_TESTS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment