diff options
author | Aki <please@ignore.pl> | 2024-03-30 19:51:14 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-03-30 19:51:14 +0100 |
commit | 451560809c7478af782b9675d03406f221021eb0 (patch) | |
tree | e93a4dbb7400e4df78f41ffdc438d092ff8aeccd /Makefile | |
parent | 3ee6230f47850c966147655b383eeea2b85ca052 (diff) | |
download | nt-451560809c7478af782b9675d03406f221021eb0.zip nt-451560809c7478af782b9675d03406f221021eb0.tar.gz nt-451560809c7478af782b9675d03406f221021eb0.tar.bz2 |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -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 |