85 man5 \
86 man7 \
87 man7d \
88 man7fs \
89 man7i \
90 man7ipp \
91 man7m \
92 man7p \
93 man9 \
94 man9e \
95 man9f \
96 man9p \
97 man9s
98
99 .PARALLEL: $(SUBDIRS)
100
101 all := TARGET = all
102 clean := TARGET = clean
103 clobber := TARGET = clobber
104 install := TARGET = install
105
106 all clean clobber install: $(SUBDIRS)
107
108 $(SUBDIRS): FRC
109 @cd $@; pwd; $(MAKE) $(TARGET)
110
111 FRC:
|
85 man5 \
86 man7 \
87 man7d \
88 man7fs \
89 man7i \
90 man7ipp \
91 man7m \
92 man7p \
93 man9 \
94 man9e \
95 man9f \
96 man9p \
97 man9s
98
99 .PARALLEL: $(SUBDIRS)
100
101 all := TARGET = all
102 clean := TARGET = clean
103 clobber := TARGET = clobber
104 install := TARGET = install
105 check := TARGET = check
106
107 all check clean clobber install: $(SUBDIRS)
108
109 $(SUBDIRS): FRC
110 @cd $@; pwd; $(MAKE) $(TARGET)
111
112 FRC:
|