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.
lubuntu-default-settings/Makefile

19 lines
364 B

#!/usr/bin/make -f
SUBDIRS := usr/share/applications/po usr/share/xsessions/po
all: install
install:
mkdir -pv $(DESTDIR)
cp -a src/etc 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