1# 2#pragma ident "%Z%%M% %I% %E% SMI" 3# 4# Copyright (c) 2000 by Sun Microsystems, Inc. 5# All rights reserved. 6 7DIRS= pppdump plugins 8 9all: $(DIRS) 10install: $(DIRS) 11clean: $(DIRS) 12clobber: $(DIRS) 13 14all:= TARGET=all 15install:= TARGET=install 16clean:= TARGET=clean 17clobber:= TARGET=clobber 18 19$(DIRS): FORCE 20 @cd $@ && make $(TARGET) 21 22FORCE: 23