summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2023-08-19 00:28:27 +0200
committerAki <please@ignore.pl>2023-08-19 00:28:27 +0200
commita3b048cdd0dae509ac8fafa8ee6d4536bf8e48c7 (patch)
tree59f0629986db4c330e96a7ce9a3606ff1701df3c /Makefile
downloadnt-a3b048cdd0dae509ac8fafa8ee6d4536bf8e48c7.zip
nt-a3b048cdd0dae509ac8fafa8ee6d4536bf8e48c7.tar.gz
nt-a3b048cdd0dae509ac8fafa8ee6d4536bf8e48c7.tar.bz2
Overengineered a program that repeats things in a line
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
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