Skip to content
Snippets Groups Projects
Commit 19df5d33 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Bugfixed it.

Rev: Makefile:1.20
parent 45b9ab8d
No related branches found
No related tags found
No related merge requests found
# #
# $Id: Makefile,v 1.19 1999/11/08 23:27:32 mast Exp $ # $Id: Makefile,v 1.20 1999/11/09 07:06:44 mast Exp $
# #
# Meta Makefile # Meta Makefile
# #
...@@ -74,7 +74,9 @@ configure: src/configure builddir ...@@ -74,7 +74,9 @@ configure: src/configure builddir
compile: configure compile: configure
@builddir="$(BUILDDIR)"; \ @builddir="$(BUILDDIR)"; \
metatarget="$(METATARGET)"; \ metatarget="$(METATARGET)"; \
test -x "$$builddir"/pike || metatarget="all $$metatarget"; \ test -f "$$builddir"/master.pike -a -x "$$builddir"/pike || \
metatarget="all $$metatarget"; \
test "x$$metatarget" = x && metatarget=all; \
cd "$$builddir" && for target in $$metatarget; do \ cd "$$builddir" && for target in $$metatarget; do \
echo Making $$target in "$$builddir"; \ echo Making $$target in "$$builddir"; \
rm -f remake; \ rm -f remake; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment