1 # 2 # Copyright 2008 Sun Microsystems, Inc. All rights reserved. 3 # Use is subject to license terms. 4 # 5 # Copyright 2011 Nexenta Systems, Inc. All rights reserved. 6 # 7 8 include ../Makefile.lib 9 10 HDRS = tcpd.h 11 CHECKHDRS = 12 HDRDIR = . 13 SUBDIRS = $(MACH) 14 15 all := TARGET = all 16 clean := TARGET = clean 17 clobber := TARGET = clobber 18 install := TARGET = install 19 lint := TARGET = lint 20 21 .KEEP_STATE: 22 23 all clean clobber install lint: $(SUBDIRS) 24 25 install_h: $(ROOTHDRS) 26 27 check: $(CHECKHDRS) 28 29 $(SUBDIRS): FRC 30 @cd $@; pwd; $(MAKE) $(TARGET) 31 32 FRC: 33 34 include ../Makefile.targ