Repositories
/
olsrd.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
cdfeae2abb942d4691d164ac09cc8b01f94736b2
[olsrd.git]
/
lib
/
Makefile
1
SUBDIRS := $(shell find -maxdepth 2 -name Makefile -not -path ./Makefile -printf "%h\n")
2
3
.PHONY: $(SUBDIRS)
4
5
all: $(SUBDIRS)
6
clean: $(SUBDIRS)
7
install: $(SUBDIRS)
8
9
$(SUBDIRS):
10
$(MAKE) -C $@ $(MAKECMDGOALS)