]> git.ozlabs.org Git - yaboot.git/blob - Makefile
Commit yaboot 1.3.5-pre3
[yaboot.git] / Makefile
1 ## Setup
2
3 include Config
4
5 VERSION = 1.3.5pre3
6 # Debug mode (spam/verbose)
7 DEBUG = 0
8 # make install vars
9 ROOT =
10 PREFIX = usr/local
11 MANDIR = man
12 # command used to get root (needed for tarball creation)
13 GETROOT = fakeroot
14
15 # We use fixed addresses to avoid overlap when relocating
16 # and other trouble with initrd
17
18 # Load the bootstrap at 2Mb
19 TEXTADDR        = 0x200000
20 # Malloc block at 3Mb -> 4Mb
21 MALLOCADDR      = 0x300000
22 MALLOCSIZE      = 0x100000
23 # Load kernel at 20Mb and ramdisk just after
24 KERNELADDR      = 0x01400000
25
26 # Set this to the prefix of your cross-compiler, if you have one.
27 # Else leave it empty.
28 #
29 CROSS = 
30
31 # The flags for the yaboot binary.
32 #
33 YBCFLAGS = -Os $(CFLAGS) -nostdinc -Wall -isystem `gcc -print-file-name=include` -fsigned-char
34 YBCFLAGS += -DVERSION=\"${VERSION}\"    #"
35 YBCFLAGS += -DTEXTADDR=$(TEXTADDR) -DDEBUG=$(DEBUG)
36 YBCFLAGS += -DMALLOCADDR=$(MALLOCADDR) -DMALLOCSIZE=$(MALLOCSIZE)
37 YBCFLAGS += -DKERNELADDR=$(KERNELADDR)
38 YBCFLAGS += -I ./include
39
40 ifeq ($(CONFIG_COLOR_TEXT),y)
41 YBCFLAGS += -DCONFIG_COLOR_TEXT
42 endif
43
44 ifeq ($(CONFIG_SET_COLORMAP),y)
45 YBCFLAGS += -DCONFIG_SET_COLORMAP
46 endif
47
48 ifeq ($(USE_MD5_PASSWORDS),y)
49 YBCFLAGS += -DUSE_MD5_PASSWORDS
50 endif
51
52 ifeq ($(CONFIG_FS_XFS),y)
53 YBCFLAGS += -DCONFIG_FS_XFS
54 endif
55
56 ifeq ($(CONFIG_FS_REISERFS),y)
57 YBCFLAGS += -DCONFIG_FS_REISERFS
58 endif
59
60 # Link flags
61 #
62 LFLAGS = -Ttext $(TEXTADDR) -Bstatic 
63
64 # Libraries
65 #
66 LLIBS = lib/libext2fs.a
67
68 # For compiling userland utils
69 #
70 UCFLAGS = -Os $(CFLAGS) -Wall -I/usr/include
71
72 # For compiling build-tools that run on the host.
73 #
74 HOSTCC = gcc
75 HOSTCFLAGS = -O2 $(CFLAGS) -Wall -I/usr/include
76
77 ## End of configuration section
78
79 OBJS = second/crt0.o second/yaboot.o second/cache.o second/prom.o second/file.o \
80         second/partition.o second/fs.o second/cfg.o second/setjmp.o second/cmdline.o \
81         second/fs_of.o second/fs_ext2.o second/fs_iso.o second/iso_util.o \
82         lib/nosys.o lib/string.o lib/strtol.o lib/vsprintf.o lib/ctype.o lib/malloc.o lib/strstr.o
83
84 ifeq ($(USE_MD5_PASSWORDS),y)
85 OBJS += second/md5.o
86 endif
87
88 ifeq ($(CONFIG_FS_XFS),y)
89 OBJS += second/fs_xfs.o
90 endif
91
92 ifeq ($(CONFIG_FS_REISERFS),y)
93 OBJS += second/fs_reiserfs.o
94 endif
95
96 CC = $(CROSS)gcc
97 LD = $(CROSS)ld
98 AS = $(CROSS)as
99 OBJCOPY = $(CROSS)objcopy
100
101 lgcc = `$(CC) -print-libgcc-file-name`
102
103 all: yaboot addnote mkofboot
104
105 yaboot: $(OBJS)
106         $(LD) $(LFLAGS) $(OBJS) $(LLIBS) $(lgcc) -o second/$@
107         chmod -x second/yaboot
108
109 addnote:
110         $(CC) $(UCFLAGS) -o util/addnote util/addnote.c
111
112 elfextract:
113         $(HOSTCC) $(HOSTCFLAGS) -o util/elfextract util/elfextract.c
114
115 mkofboot:
116         ln -sf ybin ybin/mkofboot
117         @if [ $$(grep '^VERSION=' ybin/ybin | cut -f2 -d=) != ${VERSION} ] ; then       \
118                 echo "ybin/ybin: warning: VERSION  mismatch";                           \
119                 false;                                                                  \
120         fi
121
122 %.o: %.c
123         $(CC) $(YBCFLAGS) -c -o $@ $<
124
125 %.o: %.S
126         $(CC) $(YBCFLAGS) -D__ASSEMBLY__  -c -o $@ $<
127
128 dep:
129         makedepend -Iinclude *.c lib/*.c util/*.c gui/*.c
130
131 bindist: all
132         mkdir ../yaboot-binary-${VERSION}
133         ${GETROOT} make ROOT=../yaboot-binary-${VERSION} install
134         mkdir -p -m 755 ../yaboot-binary-${VERSION}/usr/local/share/doc/yaboot
135         cp -a COPYING ../yaboot-binary-${VERSION}/usr/local/share/doc/yaboot/COPYING
136         cp -a README ../yaboot-binary-${VERSION}/usr/local/share/doc/yaboot/README
137         mv ../yaboot-binary-${VERSION}/etc/yaboot.conf ../yaboot-binary-${VERSION}/usr/local/share/doc/
138         rmdir ../yaboot-binary-${VERSION}/etc
139         ${GETROOT} tar -C ../yaboot-binary-${VERSION} -zcvpf ../yaboot-binary-${VERSION}.tar.gz .
140         rm -rf ../yaboot-binary-${VERSION}
141
142 clean:
143         rm -f second/yaboot util/addnote util/elfextract $(OBJS)
144         find . -name '#*' | xargs rm -f
145         find . -name '.#*' | xargs rm -f
146         find . -name '*~' | xargs rm -f
147         find . -name '*.swp' | xargs rm -f
148         -gunzip man/*.gz
149         rm -rf man.deb
150         chmod 755 ybin/ybin ybin/ofpath ybin/yabootconfig
151         chmod -R u+rwX,go=rX .
152         chmod a-w COPYING
153
154 strip: all
155         strip second/yaboot
156         strip --remove-section=.comment second/yaboot
157         strip util/addnote
158         strip --remove-section=.comment --remove-section=.note util/addnote
159
160 install: all strip
161         install -d -o root -g root -m 0755 ${ROOT}/etc/
162         install -d -o root -g root -m 0755 ${ROOT}/${PREFIX}/sbin/
163         install -d -o root -g root -m 0755 ${ROOT}/${PREFIX}/lib
164         install -d -o root -g root -m 0755 ${ROOT}/${PREFIX}/lib/yaboot
165         install -d -o root -g root -m 0755 ${ROOT}/${PREFIX}/${MANDIR}/man5/
166         install -d -o root -g root -m 0755 ${ROOT}/${PREFIX}/${MANDIR}/man8/
167         install -o root -g root -m 0644 second/yaboot ${ROOT}/$(PREFIX)/lib/yaboot
168         install -o root -g root -m 0755 util/addnote ${ROOT}/${PREFIX}/lib/yaboot/addnote
169         install -o root -g root -m 0644 first/ofboot ${ROOT}/${PREFIX}/lib/yaboot/ofboot
170         install -o root -g root -m 0755 ybin/ofpath ${ROOT}/${PREFIX}/sbin/ofpath
171         install -o root -g root -m 0755 ybin/ybin ${ROOT}/${PREFIX}/sbin/ybin
172         install -o root -g root -m 0755 ybin/yabootconfig ${ROOT}/${PREFIX}/sbin/yabootconfig
173         rm -f ${ROOT}/${PREFIX}/sbin/mkofboot
174         ln -s ybin ${ROOT}/${PREFIX}/sbin/mkofboot
175         @gzip -9 man/*.[58]
176         install -o root -g root -m 0644 man/bootstrap.8.gz ${ROOT}/${PREFIX}/${MANDIR}/man8/bootstrap.8.gz
177         install -o root -g root -m 0644 man/mkofboot.8.gz ${ROOT}/${PREFIX}/${MANDIR}/man8/mkofboot.8.gz
178         install -o root -g root -m 0644 man/ofpath.8.gz ${ROOT}/${PREFIX}/${MANDIR}/man8/ofpath.8.gz
179         install -o root -g root -m 0644 man/yaboot.8.gz ${ROOT}/${PREFIX}/${MANDIR}/man8/yaboot.8.gz
180         install -o root -g root -m 0644 man/yabootconfig.8.gz ${ROOT}/${PREFIX}/${MANDIR}/man8/yabootconfig.8.gz
181         install -o root -g root -m 0644 man/ybin.8.gz ${ROOT}/${PREFIX}/${MANDIR}/man8/ybin.8.gz
182         install -o root -g root -m 0644 man/yaboot.conf.5.gz ${ROOT}/${PREFIX}/${MANDIR}/man5/yaboot.conf.5.gz
183         @gunzip man/*.gz
184         @if [ ! -e ${ROOT}/etc/yaboot.conf ] ; then                                             \
185                 echo "install -o root -g root -m 0644 etc/yaboot.conf ${ROOT}/etc/yaboot.conf"; \
186                 install -o root -g root -m 0644 etc/yaboot.conf ${ROOT}/etc/yaboot.conf;        \
187          else                                                                                   \
188                 echo "/etc/yaboot.conf already exists, leaving it alone";                       \
189          fi
190         @echo
191         @echo "Installation successful."
192         @echo
193         @echo "An example /etc/yaboot.conf has been installed (unless /etc/yaboot.conf already existed"
194         @echo "You may either alter that file to match your system, or alternatively run yabootconfig"
195         @echo "yabootconfig will generate a simple and valid /etc/yaboot.conf for your system"
196         @echo
197
198 deinstall:
199         rm -f ${ROOT}/${PREFIX}/sbin/ofpath
200         rm -f ${ROOT}/${PREFIX}/sbin/ybin
201         rm -f ${ROOT}/${PREFIX}/sbin/yabootconfig
202         rm -f ${ROOT}/${PREFIX}/sbin/mkofboot
203         rm -f ${ROOT}/${PREFIX}/lib/yaboot/yaboot
204         rm -f ${ROOT}/${PREFIX}/lib/yaboot/ofboot
205         rm -f ${ROOT}/${PREFIX}/lib/yaboot/addnote
206         @rmdir ${ROOT}/${PREFIX}/lib/yaboot || true
207         rm -f ${ROOT}/${PREFIX}/${MANDIR}/man8/bootstrap.8.gz
208         rm -f ${ROOT}/${PREFIX}/${MANDIR}/man8/mkofboot.8.gz
209         rm -f ${ROOT}/${PREFIX}/${MANDIR}/man8/ofpath.8.gz
210         rm -f ${ROOT}/${PREFIX}/${MANDIR}/man8/yaboot.8.gz
211         rm -f ${ROOT}/${PREFIX}/${MANDIR}/man8/yabootconfig.8.gz
212         rm -f ${ROOT}/${PREFIX}/${MANDIR}/man8/ybin.8.gz
213         rm -f ${ROOT}/${PREFIX}/${MANDIR}/man5/yaboot.conf.5.gz
214         @if [ -L ${ROOT}/boot/yaboot -a ! -e ${ROOT}/boot/yaboot ] ; then rm -f ${ROOT}/boot/yaboot ; fi
215         @if [ -L ${ROOT}/boot/ofboot.b -a ! -e ${ROOT}/boot/ofboot.b ] ; then rm -f ${ROOT}/boot/ofboot.b ; fi
216         @echo
217         @echo "Deinstall successful."
218         @echo "${ROOT}/etc/yaboot.conf has not been removed, you may remove it yourself if you wish."
219
220 uninstall: deinstall