]>
Commit | Line | Data |
---|---|---|
14c7c974 A |
1 | |
2 | DIR = strings | |
3 | include ../MakePaths.dir | |
4 | ||
5 | INSTALLDIR = $(DSTROOT)/usr/standalone/i386 | |
6 | VPATH = $(OBJROOT) | |
7 | ||
8 | CHOWN = chown | |
9 | ||
10 | FILES = 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 | ||
27 | DIRS = ${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 | ||
36 | DIRS_NEEDED = ${DIRS} | |
37 | ||
38 | all: | |
39 | ||
40 | install_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 | ||
45 | include ../MakeInc.dir |