diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-10 11:30:51 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-10 11:30:51 +0500 |
commit | 18d06595d91845faa3d3cec4d631919f589e04f2 (patch) | |
tree | 1d34593d599e7d1b15bda2c0e27b9e0c0662ea6f /Makefile | |
parent | README: update (diff) | |
download | winapi-common-18d06595d91845faa3d3cec4d631919f589e04f2.tar.gz winapi-common-18d06595d91845faa3d3cec4d631919f589e04f2.zip |
Makefile: remove stupid header, etc.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,6 +1,3 @@ -# Various one-liners which I'm too lazy to remember. -# Basically a collection of really small shell scripts. - MAKEFLAGS += --no-builtin-rules --no-builtin-variables --warn-undefined-variables unexport MAKEFLAGS .DEFAULT_GOAL := all @@ -9,9 +6,6 @@ unexport MAKEFLAGS SHELL := bash .SHELLFLAGS := -eu -o pipefail -c -.PHONY: DO -DO: - escape = $(subst ','\'',$(1)) define noexpand @@ -49,6 +43,9 @@ $(eval $(call noexpand,BOOST_VERSION)) $(eval $(call noexpand,CMAKE_FLAGS)) $(eval $(call noexpand,DESTDIR)) +.PHONY: DO +DO: + .PHONY: all all: build |