blob: f224bc3246a456b3b20828b05424798bb3771425 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# You can do "make SUB=blah" to make only a few, or edit here, or both
# You can also run make directly in the subdirs you want.
SUB = finger fingerd
%.build:
(cd $(patsubst %.build, %, $@) && $(MAKE))
%.install:
(cd $(patsubst %.install, %, $@) && $(MAKE) install)
%.clean:
(cd $(patsubst %.clean, %, $@) && $(MAKE) clean)
all: $(patsubst %, %.build, $(SUB))
install: $(patsubst %, %.install, $(SUB))
clean: $(patsubst %, %.clean, $(SUB))
distclean: clean
rm -f MCONFIG
|