90e655ea4e
These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
20 lines
405 B
Makefile
20 lines
405 B
Makefile
# $FreeBSD$
|
|
|
|
#
|
|
# Library of internal routines for the print spooler suite.
|
|
# Originally these were compiled separately into each program,
|
|
# but the library makes it much easier to modularize them.
|
|
#
|
|
LIB= lpr
|
|
NOPROFILE= noprofile
|
|
NOPIC= nopic
|
|
NOMAN= noman
|
|
SRCS= common.c ctlinfo.c displayq.c net.c printcap.c request.c \
|
|
rmjob.c startdaemon.c
|
|
|
|
CFLAGS+= ${CWARNFLAGS}
|
|
|
|
install:
|
|
|
|
.include <bsd.lib.mk>
|