Home | History | Annotate | Download | only in gnome-2-24
      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 	@echo
     16 	@echo "NOTE:"
     17 	@echo " This Makefile just builds its dependencies. It isn't meant to"
     18 	@echo " build the all packages in the repository."
     19 	@echo
     20 
     21 clean:
     22 	$(MAKE) -C po-sun clean
     23 	$(MAKE) -C manpages clean
     24 
     25