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.
70
1998/04/09
02
:
49
:
17
hubbe Exp $
+
# $Id: Makefile.in,v 1.
71
1998/04/09
03
:
07
:
00
hubbe 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:295:
tags: ctags *.c TAGS: etags -t *.h *.c # verify / debug verify_modules: ( cd modules ; $(MAKE) $(MAKE_FLAGS) verify )
-
verbose_verify_modules:
-
( cd modules ; $(MAKE) $(MAKE_FLAGS) verbose_verify )
-
+
module_testsuites: ( cd modules ; $(MAKE) $(MAKE_FLAGS) testsuites )
-
extra_module_tests:
-
( cd modules ; $(MAKE) $(MAKE_FLAGS) extra_tests )
-
-
verify: module_testsuites testsuite
extra_module_tests
+
verify: module_testsuites testsuite
$(RUNPIKE) $(TMP_BINDIR)/test_pike.pike modules/*/module_testsuite testsuite check: verify sure: verify # verify / debug verbose
-
verbose_verify: module_testsuites testsuite
extra_module_tests
+
verbose_verify: module_testsuites testsuite
$(RUNPIKE) $(TMP_BINDIR)/test_pike.pike --verbose modules/*/module_testsuite testsuite # verify & debug VERBOSE gdb_verify: module_testsuites testsuite @echo >.gdbinit handle SIGFPE nostop noprint pass @echo >>.gdbinit handle SIGUSR1 nostop noprint pass @echo >>.gdbinit run -Mmodules -DNOT_INSTALLED -m$(TMP_LIBDIR)/master.pike $(PIKEOPTS) $(TMP_BINDIR)/test_pike.pike testsuite -v -v -f modules/*/module_testsuite gdb ./pike @rm .gdbinit