aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-01-05 13:39:35 +0530
committerArun Isaac2022-01-05 13:39:35 +0530
commit8eb8058405c1f0495d93a6789c1153a9d028cbd6 (patch)
tree9e3cae97825d56802ca6b3eaad60a91675107f86
parent9cc37393024b37da89e6a4a5e621fbfe3f539573 (diff)
downloadkolam-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--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6005d67..7268b8b 100644
--- a/Makefile
+++ b/Makefile
@@ -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