mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-24 11:29:10 +00:00
06c779979a
libraries so that `ld -f' in can create correct dependencies for yet-to-be-built libraries. Get the default BINDIR correctly (by including ../Makefile.inc recursively. Override the default it it is wrong. Don't override defaults when the defaults are correct.
12 lines
279 B
Makefile
12 lines
279 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $Id: Makefile,v 1.5 1997/12/16 17:53:25 bde Exp $
|
|
|
|
PROG= lpd
|
|
CFLAGS+=-I${.CURDIR}/../common_source -Wall -Werror
|
|
MAN8= lpd.8
|
|
SRCS= lpd.c printjob.c recvjob.c lpdchar.c modes.c
|
|
DPADD= ${LIBLPR}
|
|
LDADD= ${LIBLPR}
|
|
|
|
.include <bsd.prog.mk>
|