gimp/help/Makefile.am

14 lines
277 B
Makefile

## Process this file with automake to produce Makefile.in
SUBDIRS = C images
.PHONY: files
files:
@for subdir in $(SUBDIRS); do \
files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
for file in $$files; do \
echo $$subdir/$$file; \
done; \
done