commit cfca72b93a19ad2bbafbd9f97eefe83ad941edd5 parent 29f6f6ed73e8e00c45128a6fb4bb9feb520d7c14 Author: aabacchus <ben@bvnf.space> Date: Wed, 15 Sep 2021 02:16:45 +0100 Makefile: specify .POSIX; add distclean; typo Diffstat:
M | src/Makefile | | | 6 | ++++-- |
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/Makefile b/src/Makefile @@ -1,4 +1,5 @@ -# This makefile is BSD compatiable: You can run it without gmake on most systems +# This makefile is BSD compatible: You can run it without gmake on most systems +.POSIX: CC = cc PREFIX = /usr/local @@ -46,9 +47,10 @@ compile: clean: rm -f *.o +distclean: clean rm -fr bin/ install: mkdir -p $(DESTDIR)$(PREFIX)/k9core cp bin/* $(DESTDIR)$(PREFIX)/k9core/ .PHONY: - clean compile + clean distclean compile