~mrimbert/mythbuntu/documentation

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# Copyright (C) 2007
#       David Morris <davemorris@mythbuntu.org>
#	
#
# This program is free software; you can
# redistribute it and/or modify it under the terms
# of the GNU General Public License as published by
# the Free Software Foundation, version 2 of the
# License.  Please refer to the file 'GPL2_Licence' in the licence 
# dir of this package for a full copy of the licence
#



# Overall make file
# Please add the new language targets and included them under the default targets of default, clean, install

default: english
	

clean: english-clean
	

install: english-install
	

#### Alphabetical order #############
english:
	cd en && make

english-clean: 
	cd en && make clean

english-install:
	echo "Not implemented yet"