diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2003-02-13 05:48:39 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2003-02-13 05:48:39 +0000 |
commit | cdc5a7b174d43866732f555d2cbd5e1e30703446 (patch) | |
tree | 8ac3e96d487bb5024babc600622b2b1c566b0e6c /usr.bin/cdio/Makefile | |
parent | 05cf4c1d2b4898a1161171744765e3263767a7f9 (diff) |
add libedit support.
from Pedro Bastos <pbastos at grad dot inf dot puc-rio dot br>, minus
SMALL support. minor change by me.
millert@ ok.
Diffstat (limited to 'usr.bin/cdio/Makefile')
-rw-r--r-- | usr.bin/cdio/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cdio/Makefile b/usr.bin/cdio/Makefile index 24effdf9d96..25f09099828 100644 --- a/usr.bin/cdio/Makefile +++ b/usr.bin/cdio/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.2 2002/04/18 20:18:31 espie Exp $ +# $OpenBSD: Makefile,v 1.3 2003/02/13 05:48:38 fgsch Exp $ PROG= cdio -DPADD= ${LIBUTIL} -LDADD= -lutil +DPADD= ${LIBUTIL} ${LIBEDIT} ${LIBTERMCAP} +LDADD= -lutil -ledit -ltermcap SRCS= cdio.c cddb.c CDIAGFLAGS=-Wall -W -Wmissing-prototypes -pedantic |