1 ## 2 # Convenience Makefile. 3 # 4 # Usage : 5 # 6 # "make clean" : Clean up sun-po and manpages directories 7 # "make" : Build the po and manpage files 8 # 9 10 all: subdirectories 11 12 subdirectories: 13 $(MAKE) -C po-sun 14 $(MAKE) -C manpages 15 $(MAKE) -C manpages-roff 16 @echo 17 @echo "NOTE:" 18 @echo " This Makefile just builds its dependencies. It isn't meant to" 19 @echo " build the all packages in the repository." 20 @echo 21 22 clean: 23 $(MAKE) -C po-sun clean 24 $(MAKE) -C manpages clean 25 $(MAKE) -C manpages-roff clean 26 27