aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tsort/Makefile
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2021-09-23 17:03:37 +0300
committerCem Keylan <cem@ckyln.com>2021-09-23 17:03:37 +0300
commit96cc0c38a827ac197099498cbce8191c3a2e1e35 (patch)
treef6c0cb6a710c60825f013aa8ebf778e6b54f9f75 /usr.bin/tsort/Makefile
parent918a08feba26b48a7825ad9b592c0ee8ad5c1f55 (diff)
downloadotools-96cc0c38a827ac197099498cbce8191c3a2e1e35.tar.gz
tsort: add new tool1.5.0
Diffstat (limited to 'usr.bin/tsort/Makefile')
-rw-r--r--usr.bin/tsort/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/usr.bin/tsort/Makefile b/usr.bin/tsort/Makefile
new file mode 100644
index 0000000..0c57770
--- /dev/null
+++ b/usr.bin/tsort/Makefile
@@ -0,0 +1,9 @@
+# $OpenBSD: Makefile,v 1.7 2017/07/09 21:23:19 espie Exp $
+
+PROG = tsort
+
+CDIAGFLAGS = -Wall -Wno-char-subscripts -Wstrict-prototypes -pedantic -W
+DPADD += ${LIBUTIL}
+LDADD += -lutil
+
+.include <bsd.prog.mk>