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