Skip to content
Snippets Groups Projects
Commit 6fa2745d authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Some make's have problems with rules without actions.

Rev: Makefile:1.3
parent 8df90119
No related branches found
No related tags found
No related merge requests found
#
# $Id: Makefile,v 1.2 1999/02/05 17:35:28 mast Exp $
# $Id: Makefile,v 1.3 1999/02/05 18:53:25 grubba Exp $
#
# Meta Makefile
#
......@@ -11,6 +11,9 @@ OS=`uname -srm|sed -e 's/ /-/g'|tr '[A-Z]' '[a-z]'|tr '/' '_'`
BUILDDIR=build/$(OS)
METATARGET=
# Used to avoid make compatibility problems.
BIN_TRUE=":"
all: bin/pike compile
src/configure: src/configure.in
......@@ -46,6 +49,7 @@ compile: configure
)
force:
-@$(BIN_TRUE)
bin/pike: force
sed -e "s|\"BASEDIR\"|\"`pwd`\"|" < bin/pike.in > bin/pike
......@@ -61,8 +65,10 @@ verify_installed:
@$(MAKE) "MAKE=$(MAKE)" "prefix=$(prefix)" "BUILDDIR=$(BUILDDIR)" "METATARGET=verify_installed"
check: verify
-@$(BIN_TRUE)
sure: verify
-@$(BIN_TRUE)
verbose_verify:
@$(MAKE) "MAKE=$(MAKE)" "prefix=$(prefix)" "BUILDDIR=$(BUILDDIR)" "METATARGET=verbose_verify"
......
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