summaryrefslogtreecommitdiff
path: root/linux-basics/Makefile
blob: ab3b327fb328485da50b34d8abb4350c2c656c28 (plain)
1
2
3
4
5
6
SUBDIRS = boot-process filesystem-structure important-tools linux-processes sh-programming what-is-linux

all clean::
	for dir in $(SUBDIRS) ; do \
		(cd $$dir && make $@); \
	done