]> git.saurik.com Git - apple/boot.git/blame - i386/strings/Makefile
boot-111.1.tar.gz
[apple/boot.git] / i386 / strings / Makefile
CommitLineData
14c7c974
A
1
2DIR = strings
3include ../MakePaths.dir
4
5INSTALLDIR = $(DSTROOT)/usr/standalone/i386
6VPATH = $(OBJROOT)
7
8CHOWN = chown
9
10FILES = Language.table \
11 BootHelp.txt \
12 English.lproj/Localizable.strings \
13 English.lproj/NetInstall.strings \
14 French.lproj/Localizable.strings \
15 French.lproj/NetInstall.strings \
16 German.lproj/Localizable.strings \
17 German.lproj/NetInstall.strings
18
19# Remove Swedish, Italian and Spanish for Rhap 1.0
20# Italian.lproj/Localizable.strings \
21# Italian.lproj/NetInstall.strings \
22# Spanish.lproj/Localizable.strings \
23# Spanish.lproj/NetInstall.strings \
24# Swedish.lproj/Localizable.strings \
25# Swedish.lproj/NetInstall.strings
26
27DIRS = ${INSTALLDIR}/English.lproj \
28 ${INSTALLDIR}/French.lproj \
29 ${INSTALLDIR}/German.lproj
30
31# Remove Swedish, Italian and Spanish for Rhap 1.0
32# ${INSTALLDIR}/Italian.lproj
33# ${INSTALLDIR}/Spanish.lproj \
34# ${INSTALLDIR}/Swedish.lproj
35
36DIRS_NEEDED = ${DIRS}
37
38all:
39
40install_i386:: $(INSTALLDIR) $(DIRS_NEEDED)
41 tar cf - ${FILES} | (cd ${INSTALLDIR}; tar xfBp - )
42 chown -fR root.wheel $(INSTALLDIR)
43 chmod -R ugo-w $(INSTALLDIR)
44
45include ../MakeInc.dir