14 lines
309 B
Makefile
14 lines
309 B
Makefile
# from: @(#)Makefile 5.3 (Berkeley) 6/19/90
|
|
# $Id: Makefile,v 1.2 1993/07/30 22:12:20 mycroft Exp $
|
|
|
|
PROG= lpq
|
|
CFLAGS+=-I${.CURDIR}/../common_source
|
|
SRCS= lpq.c displayq.c common.c printcap.c
|
|
BINOWN= root
|
|
BINGRP= daemon
|
|
BINMODE=6555
|
|
BINDIR= /usr/bin
|
|
.PATH: ${.CURDIR}/../common_source
|
|
|
|
.include <bsd.prog.mk>
|