summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 73f8388..ebe2e2d 100644
--- a/Makefile
+++ b/Makefile
@@ -3,16 +3,25 @@ CFLAGS=-Wall -Wextra -Wpedantic -O3 -D_POSIX_C_SOURCE=200809L
PREFIX=/usr/local
BINDIR=$(PREFIX)/bin
+
all: nt
+
clean:
rm -f nt
+
+test: all
+ @./test.sh
+
+
install: all
install -Dm755 nt -t $(DESTDIR)$(BINDIR)/
+
uninstall:
rm -f $(DESTDIR)$(BINDIR)/nt
+
.POSIX:
-.PHONY: clean install uninstall
+.PHONY: all clean test install uninstall