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
Branches
Tags
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 # Meta Makefile
# #
...@@ -11,6 +11,9 @@ OS=`uname -srm|sed -e 's/ /-/g'|tr '[A-Z]' '[a-z]'|tr '/' '_'` ...@@ -11,6 +11,9 @@ OS=`uname -srm|sed -e 's/ /-/g'|tr '[A-Z]' '[a-z]'|tr '/' '_'`
BUILDDIR=build/$(OS) BUILDDIR=build/$(OS)
METATARGET= METATARGET=
# Used to avoid make compatibility problems.
BIN_TRUE=":"
all: bin/pike compile all: bin/pike compile
src/configure: src/configure.in src/configure: src/configure.in
...@@ -46,6 +49,7 @@ compile: configure ...@@ -46,6 +49,7 @@ compile: configure
) )
force: force:
-@$(BIN_TRUE)
bin/pike: force bin/pike: force
sed -e "s|\"BASEDIR\"|\"`pwd`\"|" < bin/pike.in > bin/pike sed -e "s|\"BASEDIR\"|\"`pwd`\"|" < bin/pike.in > bin/pike
...@@ -61,8 +65,10 @@ verify_installed: ...@@ -61,8 +65,10 @@ verify_installed:
@$(MAKE) "MAKE=$(MAKE)" "prefix=$(prefix)" "BUILDDIR=$(BUILDDIR)" "METATARGET=verify_installed" @$(MAKE) "MAKE=$(MAKE)" "prefix=$(prefix)" "BUILDDIR=$(BUILDDIR)" "METATARGET=verify_installed"
check: verify check: verify
-@$(BIN_TRUE)
sure: verify sure: verify
-@$(BIN_TRUE)
verbose_verify: verbose_verify:
@$(MAKE) "MAKE=$(MAKE)" "prefix=$(prefix)" "BUILDDIR=$(BUILDDIR)" "METATARGET=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.
Please register or to comment