SUBDIRS = Src

.PHONY: all
all: subdirs

.PHONY: subdirs $(SUBDIRS)
subdirs: $(SUBDIRS)

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

clean: TARGET=clean
clean: subdirs
	-rm -f *~

dist-clean: TARGET=dist-clean
dist-clean: clean subdirs
