1*0Sstevel@tonic-gate# 2*0Sstevel@tonic-gate#ident "%Z%%M% %I% %E% SMI" 3*0Sstevel@tonic-gate# 4*0Sstevel@tonic-gate# Copyright (c) 2000 by Sun Microsystems, Inc. 5*0Sstevel@tonic-gate# All rights reserved. 6*0Sstevel@tonic-gate 7*0Sstevel@tonic-gateTARGET= pppdump 8*0Sstevel@tonic-gateOBJS= bsd-comp.o deflate.o pppdump.o zlib.o 9*0Sstevel@tonic-gateBINDIR= /usr/bin 10*0Sstevel@tonic-gateMANDIR= /usr/share/man/man1m 11*0Sstevel@tonic-gateMANFILES= pppdump.1m 12*0Sstevel@tonic-gateCFLAGS= -DPPP_DEFS_IN_NET 13*0Sstevel@tonic-gate 14*0Sstevel@tonic-gateall: $(TARGET) 15*0Sstevel@tonic-gate 16*0Sstevel@tonic-gateclean: 17*0Sstevel@tonic-gate $(RM) -f $(TARGET) $(OBJS) 18*0Sstevel@tonic-gate 19*0Sstevel@tonic-gate$(TARGET): $(OBJS) 20*0Sstevel@tonic-gate $(CC) -o $@ $(OBJS) 21*0Sstevel@tonic-gate 22*0Sstevel@tonic-gateinstall: $(TARGET) 23*0Sstevel@tonic-gate @cp $(TARGET) $(BINDIR) && strip $(BINDIR)/$(TARGET) 24*0Sstevel@tonic-gate @test -d $(MANDIR) || mkdir -m 755 -p $(MANDIR) 25*0Sstevel@tonic-gate @cp $(MANFILES) $(MANDIR) 26*0Sstevel@tonic-gate 27*0Sstevel@tonic-gateclobber: clean 28*0Sstevel@tonic-gate $(RM) -f $(BINDIR)/$(TARGET) $(MANDIR)/$(MANFILES) 29