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
Executable File
14 lines
180 B
Makefile
Executable File
#!/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
|