You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
489 B
21 lines
489 B
6 years ago
|
# 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
|