mirror of
https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
synced 2025-03-03 23:31:08 +00:00
14 lines
180 B
Makefile
14 lines
180 B
Makefile
|
#!/usr/bin/make -f
|
||
|
|
||
|
SUBDIRS := lubuntu/po/
|
||
|
|
||
|
all: install
|
||
|
|
||
|
install:
|
||
|
for i in $(SUBDIRS); do \
|
||
|
make -C $$i; \
|
||
|
find $$i/../ -type f -iname "*.in" | xargs rm -f
|
||
|
done
|
||
|
|
||
|
# vim:ts=4
|