From 8eb8058405c1f0495d93a6789c1153a9d028cbd6 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 5 Jan 2022 13:39:35 +0530 Subject: Makefile: Specify phony targets on a single line. * Makefile (.PHONY): Specify phony targets---check, install and clean---on a single line. --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 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 -- cgit v1.2.3