summaryrefslogtreecommitdiff
path: root/lib/Makefile
blob: c30764374308f12ebcdb8e8ab6ed7e5163f167bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SUBDIRS:=

export ARCH VERSION PREFIX

.PHONY: all clean $(SUBDIRS)

all: $(SUBDIRS)

subdirs: $(SUBDIRS)

$(SUBDIRS):
	$(MAKE) $(MAKECMDGOALS) -C $@

clean: $(SUBDIRS)

install: $(SUBDIRS)