From a3183ff88a1aaac66bd49f258fdd02fdeff421ca Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 8 Feb 2022 00:37:20 +0100 Subject: Initial commit This initial commit includes the following: - A gitignore file - A license (0-Clause BSD) - A Makefile supporting installation - A manual page written in mdoc(7) - A fully working initial implementation --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad0a89c --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.POSIX: + +CFLAGS = -Ofast -march=native -mtune=native -pipe +PREFIX = /usr + +all: center +center: center.c + +clean: + rm -f center + +install: + mkdir -p ${PREFIX}/bin ${PREFIX}/share/man/man1 + cp center ${PREFIX}/bin + cp center.1 ${PREFIX}/share/man/man1 -- cgit v1.2.3