1*0Sstevel@tonic-gate# 2*0Sstevel@tonic-gate#pragma 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-gateDIRS= pppdump plugins 8*0Sstevel@tonic-gate 9*0Sstevel@tonic-gateall: $(DIRS) 10*0Sstevel@tonic-gateinstall: $(DIRS) 11*0Sstevel@tonic-gateclean: $(DIRS) 12*0Sstevel@tonic-gateclobber: $(DIRS) 13*0Sstevel@tonic-gate 14*0Sstevel@tonic-gateall:= TARGET=all 15*0Sstevel@tonic-gateinstall:= TARGET=install 16*0Sstevel@tonic-gateclean:= TARGET=clean 17*0Sstevel@tonic-gateclobber:= TARGET=clobber 18*0Sstevel@tonic-gate 19*0Sstevel@tonic-gate$(DIRS): FORCE 20*0Sstevel@tonic-gate @cd $@ && make $(TARGET) 21*0Sstevel@tonic-gate 22*0Sstevel@tonic-gateFORCE: 23