artwork/Makefile
Julien Lavergne 7dbdbbee86 Merge lubuntu-artwork 0.57
* Transition with new plymouth from /usr/share to /lib:
  - replace /lib instances by /usr/share
  - move src/lib/plymouth to src/usr/share/plymouth and adapt Makefile
  - breaks against older plymouth.
  - ensure we can transition the alternatives to the new version
2015-12-09 20:33:41 +01:00

19 lines
308 B
Makefile

#!/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