Skip to content
Snippets Groups Projects
Commit ffa627a2 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Some updates from modules/Makefile.in.

Rev: src/post_modules/Makefile.in:1.6
parent 1df12f53
No related branches found
No related tags found
No related merge requests found
# $Id: Makefile.in,v 1.5 2001/09/01 15:20:08 mast Exp $ # $Id: Makefile.in,v 1.6 2002/01/27 17:51:27 mast Exp $
@make_variables@ @make_variables@
...@@ -16,10 +16,10 @@ force: ...@@ -16,10 +16,10 @@ force:
$(MODULES) no : force $(MODULES) no : force
@if [ "$@" = "no" ]; then :; else \ @if [ "$@" = "no" ]; then :; else \
echo Making $@; \ echo Making $@; \
( cd $@; \ ( cd $@ && \
rm remake >/dev/null 2>&1 || : ; \ ( rm remake >/dev/null 2>&1 || : ) && \
$(MAKE) $(MAKE_FLAGS) MODNAME=$@ || \ ( $(MAKE) $(MAKE_FLAGS) MODNAME=$@ || \
( test -f remake && $(MAKE) $(MAKE_FLAGS) MODNAME=$@ ) \ ( test -f remake && $(MAKE) $(MAKE_FLAGS) MODNAME=$@ ) ) \
) || exit $$?; \ ) || exit $$?; \
fi fi
...@@ -54,8 +54,14 @@ Makefile: $(SRCDIR)/Makefile.in $(SRCDIR)/dependencies ./config.status ...@@ -54,8 +54,14 @@ Makefile: $(SRCDIR)/Makefile.in $(SRCDIR)/dependencies ./config.status
@echo "Run make again" >&2 @echo "Run make again" >&2
@exit 1 @exit 1
$(SRCDIR)/configure: $(SRCDIR)/configure.in $(SRCDIR)/../aclocal.m4
cd $(SRCDIR) && autoconf --localdir=$(SRCDIR)/..
config.status: $(SRCDIR)/configure
CFLAGS="$(REAL_CFLAGS)" LDFLAGS="$(REAL_LDFLAGS)" CPPFLAGS="$(REAL_CPPFLAGS)" BUILDDIR="$(TMP_BUILDDIR)" BINDIR="$(TMP_BINDIR)" ./config.status --recheck
depend: depend:
@for a in $(MODULES) ; do \ @for a in $(MODULES) no ; do \
if test "$$a" = "no"; then :; else \ if test "$$a" = "no"; then :; else \
( cd $$a && { \ ( cd $$a && { \
rm -f remake; \ rm -f remake; \
...@@ -110,14 +116,14 @@ fdtestsuites: ...@@ -110,14 +116,14 @@ fdtestsuites:
testsuites: testsuites:
@for a in $(MODULES) no ; do \ @for a in $(MODULES) no ; do \
if [ "$$a" = "no" ]; then :; else \ if [ "$$a" = "no" ]; then :; else \
(cd $$a; make module_testsuite) ; \ (cd $$a && $(MAKE) module_testsuite) ; \
fi; \ fi; \
done done
extra_tests: extra_tests:
@for a in $(MODULES) no ; do \ @for a in $(MODULES) no ; do \
if [ "$$a" = "no" ]; then :; else \ if [ "$$a" = "no" ]; then :; else \
( cd $$a ; \ ( cd $$a && \
${MAKE} $(MAKE_FLAGS) MODNAME=$$a extra_tests \ ${MAKE} $(MAKE_FLAGS) MODNAME=$$a extra_tests \
) || exit $$? ; \ ) || exit $$? ; \
fi; \ fi; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment