xref: /openbsd/usr.bin/tsort/Makefile (revision 8529ddd3)
1#	$OpenBSD: Makefile,v 1.6 2014/05/12 19:11:20 espie Exp $
2
3PROG =	tsort
4SRCS = tsort.c
5
6CDIAGFLAGS = -Wall -Wno-char-subscripts -Wstrict-prototypes -pedantic -W
7DPADD += ${LIBUTIL}
8LDADD += -lutil
9
10.include <bsd.prog.mk>
11