diff options
author | simonmar <unknown> | 2004-03-01 10:13:01 +0000 |
---|---|---|
committer | simonmar <unknown> | 2004-03-01 10:13:01 +0000 |
commit | f18af71db7d550223e3c0012896a0d422fcaf97d (patch) | |
tree | 179d3448bf6a31ccdc7fa9573c1058a285503827 /Makefile | |
parent | fa8faa35b45e97ceceec54adc4ae6ef92f0a5858 (diff) | |
download | haskell-f18af71db7d550223e3c0012896a0d422fcaf97d.tar.gz |
[project @ 2004-03-01 10:13:01 by simonmar]
build target should use '::' not ':'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,14 +56,14 @@ extraclean:: # make sure it gets built early on. # ifeq "$(HAPPY)" "$(FPTOOLS_TOP_ABS)/happy/src/happy-inplace" -build : $(FPTOOLS_TOP_ABS)/happy/src/happy-inplace +build :: $(FPTOOLS_TOP_ABS)/happy/src/happy-inplace $(FPTOOLS_TOP_ABS)/happy/src/happy-inplace : glafp-utils $(MAKE) -C happy boot all endif # Build all projects that we know about -build : +build :: @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ for i in $(SUBDIRS); do \ if [ -d $$i ]; then \ |