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.
90
1998/05/
17
16:
59
:
51
grubba Exp $
+
# $Id: Makefile.in,v 1.
91
1998/05/
22
16:
47
:
41
grubba 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:397:
-$(RUNPIKE) $(TMP_BINDIR)/mkpeep.pike $(SRCDIR)/peep.in >$(SRCDIR)/peep_engine.c peep.o: $(SRCDIR)/peep_engine.c # make dependencies depend: $(SRCDIR)/language.c gcc -MM $(PREFLAGS) $(SRCDIR)/*.c | $(TMP_BINDIR)/fixdepends.sh $(SRCDIR) ( cd modules ; $(MAKE) $(MAKE_FLAGS) depend ) $(SRCDIR)/configure @ac_configure_args@
+
# Documentation...
+
docs: mkdir docs html_docs: docs $(RUNPIKE) $(TMP_BINDIR)/htmlify_docs docs $(TMP_DOCDIR) `echo $(SRCDIR)/modules/*/doc`
-
+
wmml: force
+
@test -d wmml/. || mkdir wmml
+
@modules="`cd $(SRCDIR)/modules; ls -d */. | sed -e '/^_.*/d' -e 's/\/\.$$//'`"; \
+
echo The following modules are interresting:; \
+
echo "$$modules"; \
+
for d in $$modules; do \
+
echo Testing $$d...; \
+
if test -f "$(SRCDIR)/modules/$$d/wmml-header"; then \
+
echo Module $$d seems to contain WMML docs.; \
+
$(RUNPIKE) $(TMP_BINDIR)/mkwmml.pike \
+
"$(SRCDIR)/modules/$$d/wmml-header" \
+
`find $(SRCDIR)/modules/$$d/. $(SRCDIR)/modules/_$$d*/. -name '*.[ch]' -print 2>/dev/null` \
+
"$(SRCDIR)/modules/$$d/wmml-footer" >wmml/$$d.wmml; \
+
else :; fi; \
+
done
+
+
manpages: wmml
+
@(if test -f "$(SRCDIR)/../tutorial/tutorial.wmml"; then \
+
cat "$(SRCDIR)/../tutorial/tutorial.wmml"; \
+
else \
+
cat wmml/*.wmml; \
+
fi) | (cd wmml; $(RUNPIKE) $(TMP_BINDIR)/wmmltohtml2 \
+
$(TMP_BINDIR)/manpages man/man)
+
+
# Lobotomization...
+
lobotomize_crypto: ( cd $(SRCDIR)/modules/_Crypto ; ./.build_lobotomized_crypto ) ( cd $(SRCDIR)/modules/_Lobotomized_Crypto ; autoconf ) # # Pike internal targets # module_objects: machine.h global.h modules/static_module_makefile modules/dynamic_module_makefile $(SRCDIR)/language.h lib master.pike @( cd modules ; rm remake >/dev/null 2>&1 || : ; \ ${MAKE} $(MAKE_FLAGS) || \ ( test -f remake && ${MAKE} $(MAKE_FLAGS) ) ) || exit $$?
pike.git/src/Makefile.in:459:
CONFIG_FILES=Makefile CONFIG_HEADERS="" ./config.status @echo "Run make again" @exit 1 $(SRCDIR)/machine.h.in: $(SRCDIR)/stamp-h.in $(SRCDIR)/stamp-h.in: $(SRCDIR)/configure.in $(SRCDIR)/acconfig.h cd $(SRCDIR) && autoheader echo foo > $(SRCDIR)/stamp-h.in machine.h: stamp-h
+
@if test -f stamp-h; then \
+
rm stamp-h; $(MAKE) stamp-h; \
+
else :; fi
stamp-h: $(SRCDIR)/machine.h.in config.status CONFIG_FILES="" CONFIG_HEADERS=machine.h ./config.status testsuite: $(SRCDIR)/testsuite.in $(TMP_BINDIR)/mktestsuite $(SRCDIR)/testsuite.in >testsuite -DSRCDIR="$(SRCDIR)" @dependencies@