Blame examples/Makefile

Packit 802e35
##########################################################################
Packit 802e35
#  ocaml-gettext: a library to translate messages                        #
Packit 802e35
#                                                                        #
Packit 802e35
#  Copyright (C) 2003-2008 Sylvain Le Gall <sylvain@le-gall.net>         #
Packit 802e35
#                                                                        #
Packit 802e35
#  This library is free software; you can redistribute it and/or         #
Packit 802e35
#  modify it under the terms of the GNU Lesser General Public            #
Packit 802e35
#  License as published by the Free Software Foundation; either          #
Packit 802e35
#  version 2.1 of the License, or (at your option) any later version;    #
Packit 802e35
#  with the OCaml static compilation exception.                          #
Packit 802e35
#                                                                        #
Packit 802e35
#  This library is distributed in the hope that it will be useful,       #
Packit 802e35
#  but WITHOUT ANY WARRANTY; without even the implied warranty of        #
Packit 802e35
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     #
Packit 802e35
#  Lesser General Public License for more details.                       #
Packit 802e35
#                                                                        #
Packit 802e35
#  You should have received a copy of the GNU Lesser General Public      #
Packit 802e35
#  License along with this library; if not, write to the Free Software   #
Packit 802e35
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307   #
Packit 802e35
#  USA                                                                   #
Packit 802e35
##########################################################################
Packit 802e35
Packit 802e35
all:
Packit 802e35
	mkdir build
Packit 802e35
	cd library && $(MAKE) all
Packit 802e35
	cd gui     && $(MAKE) all
Packit 802e35
	cd program && $(MAKE) all
Packit 802e35
	cd po      && $(MAKE) all
Packit 802e35
	cd doc     && $(MAKE) all
Packit 802e35
Packit 802e35
clean:
Packit 802e35
	cd doc     && $(MAKE) clean
Packit 802e35
	cd po      && $(MAKE) clean
Packit 802e35
	cd program && $(MAKE) clean
Packit 802e35
	cd gui     && $(MAKE) clean
Packit 802e35
	cd library && $(MAKE) clean
Packit 802e35
	$(RM) -r build