GNUmakefile: replaced with POSIX Makefile
This commit is contained in:
parent
f89a686d3c
commit
622c13021d
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
build/
|
build/
|
||||||
|
dist/
|
||||||
|
|||||||
@ -7,9 +7,10 @@
|
|||||||
# permitted in any medium without royalty provided the copyright notice and this
|
# permitted in any medium without royalty provided the copyright notice and this
|
||||||
# notice are preserved. This file is offered as-is, without any warranty.
|
# notice are preserved. This file is offered as-is, without any warranty.
|
||||||
|
|
||||||
# If we want to use POSIX make we can’t use ifeq
|
.POSIX:
|
||||||
# .POSIX:
|
.PRAGMA: posix_202x # future POSIX standard support à la pdpmake(1)
|
||||||
# .PRAGMA: posix_202x
|
|
||||||
|
.PHONY: all
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||