Makefile revision 1.1
1# Makefile to build lptctl and man page
2
3SRCS=		lptctl.c
4PROG=		lptctl
5MAN=		lptctl.8
6
7CFLAGS=		-g -Wall -ansi -pedantic -pipe
8LDFLAGS+=	-static
9
10.include <bsd.prog.mk>
11