You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
365 B

subdirs = \
src \
build: build-recursive
install:
@$(MAKE) install -C src DESTDIR=$(CURDIR)/debian/rootskel-gtk/
clean: clean-recursive
build-recursive clean-recursive:
@target=`echo $@ | sed s/-recursive//`; \
list='$(subdirs)'; \
for subdir in $$list; do \
echo "Making install in $$subdir"; \
(cd $$subdir && $(MAKE) $$target) || exit 1; \
done