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.
artwork/Makefile

19 lines
308 B

#!/usr/bin/make -f
#SUBDIRS :=
all: install
install:
mkdir -pv $(DESTDIR)
cp -a src/usr $(DESTDIR)/.
# po generation
for i in $(SUBDIRS); do \
make -C $(DESTDIR)/$$i; \
rm -rf $(DESTDIR)/$$i; \
done
# remove some remaining files
find $(DESTDIR) -type f -iname "*.in" | xargs rm -f
# vim:ts=4