pike.git
/
src
/
Makefile.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/Makefile.in:30:
# These are used during binary exports and installation. MANDIR_SRC = @MANDIR@ DOCDIR_SRC = @DOCDIR@ BASEDIR = @BASEDIR@ PACKAGINGDIR = $(SRCDIR)/../packaging # These are used by the files generated by fixdepends.sh PIKE_SRC_DIR=$(SRCDIR) BUILD_BASE=
+
# The precompiler API level used by cmod files in the src root directory.
+
PRECOMPILER_ARGS=--api=3
+
# # RPM and package builders, listen up, because this is your only # documentation! This variable is prepended to the install path. # Please note that Pike will not work until moved into the proper # place. -Hubbe # buildroot= prefix = @prefix@ exec_prefix = @exec_prefix@
pike.git/src/Makefile.in:542:
exit $$status; \ fi; \ fi # # Please note that this must be accompanied by a dependency rule as # The .c file will not be created in the SOURCE directory otherwise. # -Hubbe # .cmod.c: precompile.sh-stamp $(TMP_BINDIR)/precompile.pike
-
./precompile.sh --cache precompile.pike
--api=3
$(PRECOMPILER_ARGS) >"$@" "$<" || { rm "$@"; exit 1; }
+
./precompile.sh --cache precompile.pike $(PRECOMPILER_ARGS) >"$@" "$<" || { rm "$@"; exit 1; }
# The same applies to this. .symlist.c: precompile.sh-stamp $(SRCDIR)/mklibpike.pike ./precompile.sh --cache $(SRCDIR)/mklibpike.pike -I. -I "$(SRCDIR)" -S "$<" -o "$@" || { rm "$@"; exit 1; } # This rule is used for some header files that are generated from the # source, to avoid excessive rebuilding when the source change in ways # that doesn't affect the header. # # It can cause a .h target to be out-of-date repeatedly, but since it