10Sstevel@tonic-gate# 2*6309Sceastha# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 30Sstevel@tonic-gate# Use is subject to license terms. 40Sstevel@tonic-gate# 50Sstevel@tonic-gate# ident "%Z%%M% %I% %E% SMI" 60Sstevel@tonic-gate# 70Sstevel@tonic-gate 80Sstevel@tonic-gateinclude ../Makefile.lib 90Sstevel@tonic-gate 100Sstevel@tonic-gateHDRS = tcpd.h 110Sstevel@tonic-gateCHECKHDRS = 120Sstevel@tonic-gateHDRDIR = . 130Sstevel@tonic-gateSUBDIRS = $(MACH) 140Sstevel@tonic-gate 150Sstevel@tonic-gateall := TARGET = all 160Sstevel@tonic-gateclean := TARGET = clean 170Sstevel@tonic-gateclobber := TARGET = clobber 180Sstevel@tonic-gateinstall := TARGET = install 190Sstevel@tonic-gatelint := TARGET = lint 200Sstevel@tonic-gate 210Sstevel@tonic-gate.KEEP_STATE: 220Sstevel@tonic-gate 230Sstevel@tonic-gateall clean clobber install lint: $(SUBDIRS) 240Sstevel@tonic-gate 25*6309Sceasthaall install: THIRDPARTYLICENSE 26*6309Sceastha 270Sstevel@tonic-gateinstall_h: $(ROOTHDRS) 280Sstevel@tonic-gate 290Sstevel@tonic-gatecheck: $(CHECKHDRS) 300Sstevel@tonic-gate 310Sstevel@tonic-gate$(SUBDIRS): FRC 320Sstevel@tonic-gate @cd $@; pwd; $(MAKE) $(TARGET) 330Sstevel@tonic-gate 340Sstevel@tonic-gateFRC: 350Sstevel@tonic-gate 36*6309SceasthaTHIRDPARTYLICENSE: DISCLAIMER 37*6309Sceastha $(GREP) -v '\*\*\*\*' DISCLAIMER > $@ 380Sstevel@tonic-gate 39*6309SceasthaCLOBBERFILES += THIRDPARTYLICENSE 400Sstevel@tonic-gate 410Sstevel@tonic-gateinclude ../Makefile.targ 42