head     1.1;
access   ;
symbols  ;
locks    ;
comment  @@;


1.1
date     91.02.08.15.44.45;  author bin;  state Exp;
branches ;
next	;


desc
@initial version provided by steve ness
@



1.1
log
@Initial revision
@
text
@# hp/Makefile 11/12/90
# Make hp versions of the line printer daemon and spooler.
# This also makes the hp filter,
# for converting nroff output to HP LaserJet printer escape sequences (PCL).
# This Makefile and this directory should be integrated with lpr.

ALL=\
	hp\
	hpd\
	hpr\
	hpskip
OBJ=\
	hp.o\
	hpr.o\
	hpskip.o\
	hpd1.o\
	hpd2.o\
	hpprint.o

# Primary target.
all:	$(ALL)
	: all done

# Secondary targets.
hp:	hp.o
	cc $?
hpd:	hpd1.o hpd2.o hpprint.o
	cc -o $@@ hpd1.o hpd2.o hpprint.o
hpr:	hpr.o
	cc $?
hpskip:	hpskip.o
	cc $?

# Unlinked objects.
hp.o:	hp.c
hpr.o:	lpr.c
	cc -c -o $@@ -DLASER $?
hpskip.o:	lpskip.c
	cc -c -o $@@ -DLASER $?
hpd1.o:	lpd1.c
	cc -c -o $@@ -DLASER $?
hpd2.o:	lpd2.c
	cc -c -o $@@ $?
hpprint.o:	hpprint.c

clean:
	rm $(ALL) $(OBJ)
strip:	$(ALL)
	strip $(ALL)
	
@
