diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-05 17:35:32 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-05 17:35:32 +0200 |
commit | 0183ec3576dd6960335f99c6d429e5e86b977e4f (patch) | |
tree | f2ea9e4e68b519440e99c2010578df20a0f932ef /Makefile | |
parent | workflows/build: use ubuntu-latest (diff) | |
download | cv-0183ec3576dd6960335f99c6d429e5e86b977e4f.tar.gz cv-0183ec3576dd6960335f99c6d429e5e86b977e4f.zip |
Makefile: consistent prelude
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,9 +6,6 @@ unexport MAKEFLAGS SHELL := bash .SHELLFLAGS := -eu -o pipefail -c -.PHONY: DO -DO: - escape = $(subst ','\'',$(1)) define noexpand @@ -29,6 +26,9 @@ RMDIR := rm -r -- name := cv pdf := $(name)/$(name).pdf +.PHONY: DO +DO: + .PHONY: all all: $(pdf) |