summaryrefslogtreecommitdiff
path: root/Makefile
blob: 4c4190e56f2209f1b6d1930eaa530bdb9da7c7f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
SUBDIRS = core/dmenu core/dwm core/slock core/st core/slogin tools

.PHONY: all $(SUBDIRS) clean

all: $(SUBDIRS)

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

clean:
	for d in $(SUBDIRS); do $(MAKE) -C $$d clean; done