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

.PHONY: all $(SUBDIRS) clean

all: $(SUBDIRS)

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

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