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.
157
1999/10/
08
16
:
35
:
15
noring
Exp $
+
# $Id: Makefile.in,v 1.
158
1999/10/
15
23
:
37
:
52
mast
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:280:
ctags *.c TAGS: etags -t *.h *.c # verify / debug module_testsuites: ( cd modules ; $(MAKE) $(MAKE_FLAGS) testsuites ) just_verify: module_testsuites testsuite master.pike
-
$(RUNPIKE) $(TMP_BINDIR)/test_pike.pike
-a
+
if test "
$(
TESTARGS)" = "" ; then args="-a" ; else args="$(TESTARGS)" ; fi; \
+
$(
RUNPIKE) $(TMP_BINDIR)/test_pike.pike
$$args
tinstall: aclocal master.pike rm -rf test-install $(RUNPIKE) $(TMP_BINDIR)/install.pike --new-style pike_name="test-pike" lib_prefix="$(lib_prefix)" TMP_LIBDIR="$(TMP_LIBDIR)" LIBDIR_SRC="$(LIBDIR_SRC)" SRCDIR="$(SRCDIR)" prefix="./test-install" MANDIR_SRC="$(MANDIR_SRC)" man_prefix="$(man_prefix)" verify: module_testsuites testsuite tinstall if test "$(TESTARGS)" = "" ; then args="-a" ; else args="$(TESTARGS)" ; fi; \ if test -f ./test-pike ; then ./test-pike -DNOT_INSTALLED $(TMP_BINDIR)/test_pike.pike $$args ; else sprsh `pwd`/test-install/pike/*/bin/pike.exe -DNOT_INSTALLED $(TMP_BINDIR)/test_pike.pike $$args ; fi