diff options
| author | Simon Tatham <anakin@pobox.com> | 2005-01-24 11:06:31 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2005-01-24 11:06:31 +0000 |
| commit | 42f031beed5f6a455e6a7725a3a14710d3702f60 (patch) | |
| tree | 10383f10bf998602ff8e619342206ede6ea574b7 | |
| parent | c011833b579018f69336c63f0de222e116da4a6a (diff) | |
| download | halibut-42f031beed5f6a455e6a7725a3a14710d3702f60.zip halibut-42f031beed5f6a455e6a7725a3a14710d3702f60.tar.gz halibut-42f031beed5f6a455e6a7725a3a14710d3702f60.tar.bz2 halibut-42f031beed5f6a455e6a7725a3a14710d3702f60.tar.xz | |
Use .PHONY to ensure the various fake make targets (`all', `clean',
`install' etc) don't get confused by the existence of a file with
the same name. Required in particular for `make install' on OS X,
since otherwise its case-insensitive fs gets confused by INSTALL.
[originally from svn r5189]
| -rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -9,12 +9,15 @@ # Currently depends on GNU make, because: # - the Makefile uses GNU ifdef / ifndef commands and GNU make `%' # pattern rules +# - we use .PHONY prefix=/usr/local exec_prefix=$(prefix) bindir=$(exec_prefix)/bin INSTALL=install -c +.PHONY: all install clean spotless topclean release + ifdef RELEASE ifndef VERSION VERSION := $(RELEASE) |