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
|
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 $(BUILD64)SUBDIRS += $(MACH64)
15
16 all := TARGET = all
17 clean := TARGET = clean
18 clobber := TARGET = clobber
19 install := TARGET = install
20 lint := TARGET = lint
21
22 .KEEP_STATE:
23
24 all clean clobber install lint: $(SUBDIRS)
25
26 install_h: $(ROOTHDRS)
27
28 check: $(CHECKHDRS)
29
30 $(SUBDIRS): FRC
31 @cd $@; pwd; $(MAKE) $(TARGET)
32
33 FRC:
34
|