pike.git
/
src
/
Makefile.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/Makefile.in:463:
-rm dumpversion 2>/dev/null $(MAKE) $(MAKE_FLAGS) dump_modules delete_dumped_modules: -find lib -type f -name \*.o | xargs rm -f undump_modules: delete_dumped_modules -rm dumpversion 2>/dev/null .SUFFIXES:
-
.SUFFIXES: .c .h .S .o .m .mmod .cmod .
symlist .
pp .pph .
protos .
h_src .wxs .wixobj .msi .msm
+
.SUFFIXES: .c .h .S .o .m .mmod .cmod .pp .pph .h_src .wxs .wixobj .msi .msm
.c.pp: $(CPP) $(PREFLAGS) -DPMOD_EXPORT=PMOD_EXPORT \ -DPMOD_PROTO=PMOD_PROTO "$<" >"$@"
-
.
c.
protos: precompile.sh-stamp
+
%
.protos:
%.c
precompile.sh-stamp
./precompile.sh --cache fake_dynamic_load.pike >"$@" --cpp --protos \ $(CPP) $(PREFLAGS) -DPMOD_EXPORT=PMOD_EXPORT \ -DPMOD_PROTO=PMOD_PROTO -DPIKE_PRECOMPILER=1 "$<" || \ { rm "$@"; exit 1; } .h.pph: $(CPP) $(PREFLAGS) -DPMOD_EXPORT=PMOD_EXPORT \ -DPMOD_PROTO=PMOD_PROTO "$<" >"$@"
pike.git/src/Makefile.in:535:
# # 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 --cache precompile.pike $(PRECOMPILER_ARGS) >"$@" "$<" || { rm "$@"; exit 1; } # The same applies to this.
-
.
symlist.
c: precompile.sh-stamp $(SRCDIR)/mklibpike.pike
+
%
.c:
%.symlist
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 # runs fast that's not an issue. This technique only works well in # make's that stat the target again after the rule has run and # recalculate the dependencies from that. Most make's seems to behave