diff options
author | Arun Isaac | 2022-01-05 13:39:35 +0530 |
---|---|---|
committer | Arun Isaac | 2022-01-05 13:39:35 +0530 |
commit | 8eb8058405c1f0495d93a6789c1153a9d028cbd6 (patch) | |
tree | 9e3cae97825d56802ca6b3eaad60a91675107f86 | |
parent | 9cc37393024b37da89e6a4a5e621fbfe3f539573 (diff) | |
download | kolam-8eb8058405c1f0495d93a6789c1153a9d028cbd6.tar.gz kolam-8eb8058405c1f0495d93a6789c1153a9d028cbd6.tar.lz kolam-8eb8058405c1f0495d93a6789c1153a9d028cbd6.zip |
Makefile: Specify phony targets on a single line.
* Makefile (.PHONY): Specify phony targets---check, install and
clean---on a single line.
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -34,11 +34,10 @@ all: $(objects) %.go: %.scm $(GUILD) compile -L . -o $@ $< -.PHONY: check +.PHONY: check install clean check: $(GUILE) -L . tests/parse.scm -.PHONY: install install: $(sources) $(objects) install -D $(sources) --target-directory $(scmdir) install -D $(objects) --target-directory $(godir) @@ -48,6 +47,5 @@ website: website/index.html website/index.html: README.org build-aux/build-home-page.el $(EMACS) -Q --batch --load build-aux/build-home-page.el --funcall build-website -.PHONY: clean clean: rm -f $(objects) Makefile.include website/index.html |