[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / tsort

File: [local] / src / usr.bin / tsort / Makefile (download)

Revision 1.6, Mon May 12 19:11:20 2014 UTC (10 years ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7, OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.5: +6 -3 lines

adjust to ohash being in libutil now, and to the interface changes.
fix potential integer overflows in memory allocation (mostly for pedagogical
purposes, these are unlikely to overflow in practice)
move the rest of lst.lib stuff into its own directory.

#	$OpenBSD: Makefile,v 1.6 2014/05/12 19:11:20 espie Exp $

PROG =	tsort
SRCS = tsort.c

CDIAGFLAGS = -Wall -Wno-char-subscripts -Wstrict-prototypes -pedantic -W
DPADD += ${LIBUTIL}
LDADD += -lutil

.include <bsd.prog.mk>