pike.git
/
src
/
Makefile.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/Makefile.in:1:
#
-
# $Id: Makefile.in,v 1.
374
2003/12/
07
16
:
14
:
34
marcus
Exp $
+
# $Id: Makefile.in,v 1.
375
2003/12/
14
20
:
37
:
06
nilsson
Exp $
# # This line is needed on some machines. @SET_MAKE@ # Don't change this line. Define EXTRALIBS before this line if you # wish to add any libraries. LIBS=@LIBS@ $(EXTRALIBS) # This is normall the install program in the source directory
pike.git/src/Makefile.in:420:
# tidy up a bit tidy: -rm -f *.fail *.o *.obj *.pp *.protos core y.output y.tab.c y.tab.h -rm -f $(TMP_BINDIR)/core *.o *.i *.i~ dynloadtest* -rm testsuite testsuite.tmp testsuite_test.pike testsuite_test_dir.pmod -find lib -type f -name \*.o | xargs rm -f # make clean clean_here: tidy doc_clean -( cd tlib; find . -name testsuite | xargs rm )
+
-( cd extra_tests; find . -name testsuite | xargs rm )
-rm -f confdefs.h conftest.* -rm -rf test-install test-pike -rm -f TAGS tags yacc.acts yacc.debug yacc.tmp *.debug.log a.out pike.tmp -rm -f hilfe rsif master.pike compiler-warnings dumpmodule.log -rm -f interpreter_debug.h lexer?.h -rm -f import-stamp modules-stamp master-stamp -rm -rf lib/modules/* # -rm -f lib/master.pike clean: clean_here
pike.git/src/Makefile.in:444:
spotless: clean_here -( cd modules; $(MAKE) $(MAKE_FLAGS) spotless ) -( cd post_modules; $(MAKE) $(MAKE_FLAGS) spotless ) -(cd $(SRCDIR); find . -type f -name '*.h.in' -print) | \ sed -e 's/\.in$$//' | xargs rm -f -rm -f Makefile config.* make_variables specs pike.syms -rm -f core core.* .pure stamp-h -rm -f lexical.c mon.out *.ln -rm -f pike pike.old l.outa* num_files_to_install -rm -f precompile.sh precompile.sh-stamp smartlink
-
-rm -rf tlib lib precompile
+
-rm -rf tlib
extra_tests
lib precompile
distclean: spotless cvsclean: distclean ( for d in `cd $(SRCDIR) && find . -type d -print`; do \ if test -f "$(SRCDIR)/$$d/.cvsignore" ; then \ (cd "$$d" && rm -f `cat "$(SRCDIR)/$$d/.cvsignore"`); \ (cd "$(SRCDIR)/$$d" && rm -f `cat "$(SRCDIR)/$$d/.cvsignore"`); \ else :; fi; \ done)
pike.git/src/Makefile.in:467:
tags: ctags *.c TAGS: etags -t *.h *.c # verify / debug testsuites: ( cd modules && $(MAKE) $(MAKE_FLAGS) testsuites ) ( cd post_modules && $(MAKE) $(MAKE_FLAGS) testsuites )
-
( cd $(TMP_BUILDDIR) && $(TMP_BINDIR)/mklibtests.sh --srcdir=$(LIBDIR_SRC) \
+
( cd $(TMP_BUILDDIR) && $(TMP_BINDIR)/mklibtests.sh
\
+
--srcdir=$(LIBDIR_SRC) \
--destdir=tlib --bindir=$(TMP_BINDIR) )
-
+
if test -d "$(BASEDIR)/extra_tests" ; then \
+
(cd "$(TMP_BUILDDIR)" && $(TMP_BINDIR)/mklibtests.sh \
+
--srcdir="$(BASEDIR)/extra_tests" \
+
--destdir=extra_tests --bindir=$(TMP_BINDIR) ) ; fi;
just_verify: testsuites testsuite master-stamp if test "x$(TESTARGS)" = x ; then args="-a -v" ; \ else args="$(TESTARGS)" ; fi; \ $(RUNPIKE) $(TMP_BINDIR)/test_pike.pike $$args valgrind_verify: testsuites testsuite master-stamp if test "x$(TESTARGS)" = x ; then args="-a -v" ; \ else args="$(TESTARGS)" ; fi; \ $(VALGRIND) $(VALGRINDARGS) $(RUNPIKE) $(TMP_BINDIR)/test_pike.pike $$args