From a3b048cdd0dae509ac8fafa8ee6d4536bf8e48c7 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 19 Aug 2023 00:28:27 +0200 Subject: Overengineered a program that repeats things in a line --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..73f8388 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +CFLAGS=-Wall -Wextra -Wpedantic -O3 -D_POSIX_C_SOURCE=200809L + +PREFIX=/usr/local +BINDIR=$(PREFIX)/bin + +all: nt + +clean: + rm -f nt + +install: all + install -Dm755 nt -t $(DESTDIR)$(BINDIR)/ + +uninstall: + rm -f $(DESTDIR)$(BINDIR)/nt + +.POSIX: +.PHONY: clean install uninstall -- cgit v1.1