18 lines
492 B
Makefile
Raw Normal View History

2018-07-10 02:46:12 -05:00
#!/usr/bin/make -f
#SUBDIRS :=
2018-07-10 02:46:12 -05:00
2018-07-11 00:10:37 -05:00
all:
# Desktop file
(cd lubuntu/po/ && make)
2020-05-14 22:41:29 -07:00
(cd ubuntustudio/po/ && make)
2018-07-11 00:10:37 -05:00
# Slideshow
(cd lubuntu/branding/lubuntu/lang/ && make)
2020-05-14 22:41:29 -07:00
(cd ubuntustudio/branding/ubuntustudio/lang && make)
2018-07-11 00:10:37 -05:00
# Get rid of the unnecessary files
find lubuntu/ -type f -iname "*.in" | xargs rm -f
find lubuntu/ -type f -iname "Makefile" | xargs rm -f
2020-05-14 22:41:29 -07:00
find ubuntustudio/ -type f -iname "*.in" | xargs rm -f
find ubuntustudio/ -type f -iname "Makefile" | xargs rm -f
2018-07-10 02:46:12 -05:00
# vim:ts=4