###################################################################### # # Makefile for rlp # :set tabstop=4 # ## your ANSI compiler #CC = cc -D_TEST_ -non_shared CC = cc -non_shared LDFLAGS = -non_shared -Wl,-Bstatic BINDIR = /opt/bin BSD_INSTALL = /usr/local/bin/install INSTALL = $(BSD_INSTALL) -c -o lp -g lp -m 4755 PROG = rlp all: ${PROG} install: ${PROG} ${INSTALL} ${PROG} ${BINDIR} strip ${BINDIR}/${PROG} clean clobber: rm -f ${PROG} *.o