Makefile revision 301738
1#
2# $FreeBSD: stable/10/Makefile 301738 2016-06-09 15:43:00Z bdrewery $
3#
4# The user-driven targets are:
5#
6# universe            - *Really* build *everything* (buildworld and
7#                       all kernels on all architectures).
8# tinderbox           - Same as universe, but presents a list of failed build
9#                       targets and exits with an error if there were any.
10# buildworld          - Rebuild *everything*, including glue to help do
11#                       upgrades.
12# installworld        - Install everything built by "buildworld".
13# world               - buildworld + installworld, no kernel.
14# buildkernel         - Rebuild the kernel and the kernel-modules.
15# installkernel       - Install the kernel and the kernel-modules.
16# installkernel.debug
17# reinstallkernel     - Reinstall the kernel and the kernel-modules.
18# reinstallkernel.debug
19# kernel              - buildkernel + installkernel.
20# kernel-toolchain    - Builds the subset of world necessary to build a kernel
21# kernel-toolchains   - Build kernel-toolchain for all universe targets.
22# doxygen             - Build API documentation of the kernel, needs doxygen.
23# update              - Convenient way to update your source tree(s).
24# check-old           - List obsolete directories/files/libraries.
25# check-old-dirs      - List obsolete directories.
26# check-old-files     - List obsolete files.
27# check-old-libs      - List obsolete libraries.
28# delete-old          - Delete obsolete directories/files.
29# delete-old-dirs     - Delete obsolete directories.
30# delete-old-files    - Delete obsolete files.
31# delete-old-libs     - Delete obsolete libraries.
32# targets             - Print a list of supported TARGET/TARGET_ARCH pairs
33#                       for world and kernel targets.
34# toolchains          - Build a toolchain for all world and kernel targets.
35# xdev                - xdev-build + xdev-install for the architecture
36#                       specified with XDEV and XDEV_ARCH.
37# xdev-build          - Build cross-development tools.
38# xdev-install        - Install cross-development tools.
39# native-xtools       - Create host binaries that produce target objects
40#                       for use in qemu user-mode jails.
41# 
42# "quick" way to test all kernel builds:
43# 	_jflag=`sysctl -n hw.ncpu`
44# 	_jflag=$(($_jflag * 2))
45# 	[ $_jflag -gt 12 ] && _jflag=12
46# 	make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag}
47#
48# This makefile is simple by design. The FreeBSD make automatically reads
49# the /usr/share/mk/sys.mk unless the -m argument is specified on the
50# command line. By keeping this makefile simple, it doesn't matter too
51# much how different the installed mk files are from those in the source
52# tree. This makefile executes a child make process, forcing it to use
53# the mk files from the source tree which are supposed to DTRT.
54#
55# Most of the user-driven targets (as listed above) are implemented in
56# Makefile.inc1.  The exceptions are universe, tinderbox and targets.
57#
58# If you want to build your system from source be sure that /usr/obj has
59# at least 1GB of diskspace available.  A complete 'universe' build requires
60# about 15GB of space.
61#
62# For individuals wanting to build from the sources currently on their
63# system, the simple instructions are:
64#
65# 1.  `cd /usr/src'  (or to the directory containing your source tree).
66# 2.  Define `HISTORICAL_MAKE_WORLD' variable (see README).
67# 3.  `make world'
68#
69# For individuals wanting to upgrade their sources (even if only a
70# delta of a few days):
71#
72#  1.  `cd /usr/src'       (or to the directory containing your source tree).
73#  2.  `make buildworld'
74#  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
75#  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
76#       [steps 3. & 4. can be combined by using the "kernel" target]
77#  5.  `reboot'        (in single user mode: boot -s from the loader prompt).
78#  6.  `mergemaster -p'
79#  7.  `make installworld'
80#  8.  `mergemaster'		(you may wish to use -i, along with -U or -F).
81#  9.  `make delete-old'
82# 10.  `reboot'
83# 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
84#
85# See src/UPDATING `COMMON ITEMS' for more complete information.
86#
87# If TARGET=machine (e.g. ia64, sparc64, ...) is specified you can
88# cross build world for other machine types using the buildworld target,
89# and once the world is built you can cross build a kernel using the
90# buildkernel target.
91#
92# Define the user-driven targets. These are listed here in alphabetical
93# order, but that's not important.
94#
95# Targets that begin with underscore are internal targets intended for
96# developer convenience only.  They are intentionally not documented and
97# completely subject to change without notice.
98#
99# For more information, see the build(7) manual page.
100#
101TGTS=	all all-man buildenv buildenvvars buildkernel buildworld \
102	check-old check-old-dirs check-old-files check-old-libs \
103	checkdpadd clean cleandepend cleandir \
104	delete-old delete-old-dirs delete-old-files delete-old-libs \
105	depend distribute distributekernel distributekernel.debug \
106	distributeworld distrib-dirs distribution doxygen \
107	everything hier hierarchy install installcheck installkernel \
108	installkernel.debug packagekernel packageworld \
109	reinstallkernel reinstallkernel.debug \
110	installworld kernel-toolchain libraries lint maninstall \
111	obj objlink regress rerelease showconfig tags toolchain update \
112	_worldtmp _legacy _bootstrap-tools _cleanobj _obj \
113	_build-tools _cross-tools _includes _libraries _depend \
114	build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
115	native-xtools \
116
117TGTS+=	${SUBDIR_TARGETS}
118
119BITGTS=	files includes
120BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
121TGTS+=	${BITGTS}
122
123.ORDER: buildworld installworld
124.ORDER: buildworld distributeworld
125.ORDER: buildworld buildkernel
126.ORDER: installworld distribution
127.ORDER: installworld installkernel
128.ORDER: buildkernel installkernel
129.ORDER: buildkernel installkernel.debug
130.ORDER: buildkernel reinstallkernel
131.ORDER: buildkernel reinstallkernel.debug
132
133PATH=	/sbin:/bin:/usr/sbin:/usr/bin
134MAKEOBJDIRPREFIX?=	/usr/obj
135_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
136    ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
137    -f /dev/null -V MAKEOBJDIRPREFIX dummy
138.if !empty(_MAKEOBJDIRPREFIX)
139.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
140	(in make.conf(5)) or command-line variable.
141.endif
142
143# We often need to use the tree's version of make to build it.
144# Choices add to complexity though.
145# We cannot blindly use a make which may not be the one we want
146# so be exlicit - until all choice is removed.
147.if !defined(WITHOUT_BMAKE)
148WANT_MAKE=	bmake
149.else
150WANT_MAKE=	fmake
151.endif
152MYMAKE=		${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
153.if defined(.PARSEDIR)
154HAVE_MAKE=	bmake
155.else
156HAVE_MAKE=	fmake
157.endif
158.if ${HAVE_MAKE} != ${WANT_MAKE} || \
159    (defined(WANT_MAKE_VERSION) && ${MAKE_VERSION} < ${WANT_MAKE_VERSION})
160NEED_MAKE_UPGRADE= t
161.endif
162.if exists(${MYMAKE})
163SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
164.elif defined(NEED_MAKE_UPGRADE) || ${WANT_MAKE} != "bmake"
165# It may not exist yet but we may cause it to.
166# In the case of fmake, upgrade_checks may cause a newer version to be built.
167SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \
168	-m ${.CURDIR}/share/mk
169.else
170SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk
171.endif
172
173_MAKE=	PATH=${PATH} ${SUB_MAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
174
175# Guess machine architecture from machine type, and vice versa.
176.if !defined(TARGET_ARCH) && defined(TARGET)
177_TARGET_ARCH=	${TARGET:S/pc98/i386/}
178.elif !defined(TARGET) && defined(TARGET_ARCH) && \
179    ${TARGET_ARCH} != ${MACHINE_ARCH}
180_TARGET=		${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/}
181.endif
182# Legacy names, for another transition period mips:mips(n32|64)?eb -> mips:mips\1
183.if defined(TARGET) && defined(TARGET_ARCH) && \
184    ${TARGET} == "mips" && ${TARGET_ARCH:Mmips*eb}
185_TARGET_ARCH=		${TARGET_ARCH:C/eb$//}
186.warning "TARGET_ARCH of ${TARGET_ARCH} is deprecated in favor of ${_TARGET_ARCH}"
187.endif
188.if defined(TARGET) && ${TARGET} == "mips" && defined(TARGET_BIG_ENDIAN)
189.warning "TARGET_BIG_ENDIAN is no longer necessary for MIPS.  Big-endian is not the default."
190.endif
191# arm with TARGET_BIG_ENDIAN -> armeb
192.if defined(TARGET_ARCH) && ${TARGET_ARCH} == "arm" && defined(TARGET_BIG_ENDIAN)
193.warning "TARGET_ARCH of arm with TARGET_BIG_ENDIAN is deprecated.  use armeb"
194_TARGET_ARCH=armeb
195.endif
196.if defined(TARGET) && !defined(_TARGET)
197_TARGET=${TARGET}
198.endif
199.if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
200_TARGET_ARCH=${TARGET_ARCH}
201.endif
202# Otherwise, default to current machine type and architecture.
203_TARGET?=	${MACHINE}
204_TARGET_ARCH?=	${MACHINE_ARCH}
205
206#
207# Make sure we have an up-to-date make(1). Only world and buildworld
208# should do this as those are the initial targets used for upgrades.
209# The user can define ALWAYS_CHECK_MAKE to have this check performed
210# for all targets.
211#
212.if defined(ALWAYS_CHECK_MAKE) || !defined(.PARSEDIR)
213${TGTS}: upgrade_checks
214.else
215buildworld: upgrade_checks
216.endif
217
218#
219# This 'cleanworld' target is not included in TGTS, because it is not a
220# recursive target.  All of the work for it is done right here.   It is
221# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
222# created by bsd.obj.mk, except that we don't want to .include that file
223# in this makefile.  
224#
225# In the following, the first 'rm' in a series will usually remove all
226# files and directories.  If it does not, then there are probably some
227# files with file flags set, so this unsets them and tries the 'rm' a
228# second time.  There are situations where this target will be cleaning
229# some directories via more than one method, but that duplication is
230# needed to correctly handle all the possible situations.  Removing all
231# files without file flags set in the first 'rm' instance saves time,
232# because 'chflags' will need to operate on fewer files afterwards.
233#
234BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
235cleanworld:
236.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
237.if exists(${BW_CANONICALOBJDIR}/)
238	-rm -rf ${BW_CANONICALOBJDIR}/*
239	-chflags -R 0 ${BW_CANONICALOBJDIR}
240	rm -rf ${BW_CANONICALOBJDIR}/*
241.endif
242	#   To be safe in this case, fall back to a 'make cleandir'
243	${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
244.else
245	-rm -rf ${.OBJDIR}/*
246	-chflags -R 0 ${.OBJDIR}
247	rm -rf ${.OBJDIR}/*
248.endif
249
250#
251# Handle the user-driven targets, using the source relative mk files.
252#
253
254.if !(!empty(.MAKEFLAGS:M-n) && ${.MAKEFLAGS:M-n} == "-n")
255# skip this for -n to avoid changing previous behavior of 
256# 'make -n buildworld' etc.  Using -n -n will run it.
257${TGTS}: .MAKE
258tinderbox toolchains kernel-toolchains: .MAKE
259.endif
260
261${TGTS}: .PHONY
262	${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
263
264# The historic default "all" target creates files which may cause stale
265# or (in the cross build case) unlinkable results. Fail with an error
266# when no target is given. The users can explicitly specify "all"
267# if they want the historic behavior.
268.MAIN:	_guard
269
270_guard:
271	@echo
272	@echo "Explicit target required (use \"all\" for historic behavior)"
273	@echo
274	@false
275
276STARTTIME!= LC_ALL=C date
277CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
278.if !empty(CHECK_TIME)
279.error check your date/time: ${STARTTIME}
280.endif
281
282.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
283#
284# world
285#
286# Attempt to rebuild and reinstall everything. This target is not to be
287# used for upgrading an existing FreeBSD system, because the kernel is
288# not included. One can argue that this target doesn't build everything
289# then.
290#
291world: upgrade_checks
292	@echo "--------------------------------------------------------------"
293	@echo ">>> make world started on ${STARTTIME}"
294	@echo "--------------------------------------------------------------"
295.if target(pre-world)
296	@echo
297	@echo "--------------------------------------------------------------"
298	@echo ">>> Making 'pre-world' target"
299	@echo "--------------------------------------------------------------"
300	${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
301.endif
302	${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
303	${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
304.if target(post-world)
305	@echo
306	@echo "--------------------------------------------------------------"
307	@echo ">>> Making 'post-world' target"
308	@echo "--------------------------------------------------------------"
309	${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
310.endif
311	@echo
312	@echo "--------------------------------------------------------------"
313	@echo ">>> make world completed on `LC_ALL=C date`"
314	@echo "                   (started ${STARTTIME})"
315	@echo "--------------------------------------------------------------"
316.else
317world:
318	@echo "WARNING: make world will overwrite your existing FreeBSD"
319	@echo "installation without also building and installing a new"
320	@echo "kernel.  This can be dangerous.  Please read the handbook,"
321	@echo "'Rebuilding world', for how to upgrade your system."
322	@echo "Define DESTDIR to where you want to install FreeBSD,"
323	@echo "including /, to override this warning and proceed as usual."
324	@echo ""
325	@echo "Bailing out now..."
326	@false
327.endif
328
329#
330# kernel
331#
332# Short hand for `make buildkernel installkernel'
333#
334kernel: buildkernel installkernel
335
336#
337# Perform a few tests to determine if the installed tools are adequate
338# for building the world.
339#
340upgrade_checks:
341.if defined(NEED_MAKE_UPGRADE)
342	@${_+_}(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
343.elif ${WANT_MAKE} == "fmake"
344	@if ! (cd ${.CURDIR}/tools/build/make_check && \
345	    PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
346	    PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
347	then \
348	    (cd ${.CURDIR} && ${MAKE} make); \
349	fi
350.endif
351
352#
353# Upgrade make(1) to the current version using the installed
354# headers, libraries and tools.  Also, allow the location of
355# the system bsdmake-like utility to be overridden.
356#
357MMAKEENV=	MAKEOBJDIRPREFIX=${MYMAKE:H} \
358		DESTDIR= \
359		INSTALL="sh ${.CURDIR}/tools/install.sh"
360MMAKE=		${MMAKEENV} ${MAKE} \
361		-D_UPGRADING \
362		-DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
363		-DNO_CPU_CFLAGS -DNO_WERROR \
364		DESTDIR= -DNO_TESTS PROGNAME=${MYMAKE:T}
365
366make bmake: .PHONY
367	@echo
368	@echo "--------------------------------------------------------------"
369	@echo ">>> Building an up-to-date make(1)"
370	@echo "--------------------------------------------------------------"
371	${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
372		${MMAKE} obj; \
373		${MMAKE} depend; \
374		${MMAKE} all; \
375		${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR=
376
377tinderbox toolchains kernel-toolchains: upgrade_checks
378
379tinderbox:
380	@cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe
381
382toolchains:
383	@cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe
384
385kernel-toolchains:
386	@cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe
387
388#
389# universe
390#
391# Attempt to rebuild *everything* for all supported architectures,
392# with a reasonable chance of success, regardless of how old your
393# existing system is.
394#
395.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
396TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64
397TARGET_ARCHES_arm?=	arm armeb armv6
398TARGET_ARCHES_mips?=	mipsel mips mips64el mips64 mipsn32
399TARGET_ARCHES_powerpc?=	powerpc powerpc64
400TARGET_ARCHES_pc98?=	i386
401.for target in ${TARGETS}
402TARGET_ARCHES_${target}?= ${target}
403.endfor
404
405.if defined(UNIVERSE_TARGET)
406MAKE_JUST_WORLDS=	YES
407.else
408UNIVERSE_TARGET?=	buildworld
409.endif
410KERNSRCDIR?=		${.CURDIR}/sys
411
412targets:
413	@echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
414.for target in ${TARGETS}
415.for target_arch in ${TARGET_ARCHES_${target}}
416	@echo "    ${target}/${target_arch}"
417.endfor
418.endfor
419
420.if defined(DOING_TINDERBOX)
421FAILFILE=${.CURDIR}/_.tinderbox.failed
422MAKEFAIL=tee -a ${FAILFILE}
423.else
424MAKEFAIL=cat
425.endif
426
427universe_prologue:  upgrade_checks
428universe: universe_prologue
429universe_prologue:
430	@echo "--------------------------------------------------------------"
431	@echo ">>> make universe started on ${STARTTIME}"
432	@echo "--------------------------------------------------------------"
433.if defined(DOING_TINDERBOX)
434	@rm -f ${FAILFILE}
435.endif
436.for target in ${TARGETS}
437universe: universe_${target}
438universe_epilogue: universe_${target}
439universe_${target}: universe_${target}_prologue
440universe_${target}_prologue: universe_prologue
441	@echo ">> ${target} started on `LC_ALL=C date`"
442.if !defined(MAKE_JUST_KERNELS)
443.for target_arch in ${TARGET_ARCHES_${target}}
444universe_${target}: universe_${target}_${target_arch}
445universe_${target}_${target_arch}: universe_${target}_prologue .MAKE
446	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
447	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
448	    ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
449	    TARGET=${target} \
450	    TARGET_ARCH=${target_arch} \
451	    > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
452	    (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
453	    "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
454	    ${MAKEFAIL}))
455	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
456.endfor
457.endif
458.if !defined(MAKE_JUST_WORLDS)
459# If we are building world and kernels wait for the required worlds to finish
460.if !defined(MAKE_JUST_KERNELS)
461.for target_arch in ${TARGET_ARCHES_${target}}
462universe_${target}_kernels: universe_${target}_${target_arch}
463.endfor
464.endif
465universe_${target}: universe_${target}_kernels
466universe_${target}_kernels: universe_${target}_prologue .MAKE
467.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
468	@(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
469	    ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
470	    (echo "${target} 'make LINT' failed," \
471	    "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
472.endif
473	@cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \
474	    universe_kernels
475.endif
476	@echo ">> ${target} completed on `LC_ALL=C date`"
477.endfor
478universe_kernels: universe_kernconfs
479.if !defined(TARGET)
480TARGET!=	uname -m
481.endif
482.if defined(MAKE_ALL_KERNELS)
483_THINNER=cat
484.else
485_THINNER=xargs grep -L "^.NO_UNIVERSE" || true
486.endif
487KERNCONFS!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
488		find [[:upper:][:digit:]]*[[:upper:][:digit:]] \
489		-type f -maxdepth 0 \
490		! -name DEFAULTS ! -name NOTES | \
491		${_THINNER}
492universe_kernconfs:
493.for kernel in ${KERNCONFS}
494TARGET_ARCH_${kernel}!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
495	config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
496	grep -v WARNING: | cut -f 2
497.if empty(TARGET_ARCH_${kernel})
498.error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
499.endif
500universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
501universe_kernconf_${TARGET}_${kernel}: .MAKE
502	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
503	    ${SUB_MAKE} ${JFLAG} buildkernel \
504	    TARGET=${TARGET} \
505	    TARGET_ARCH=${TARGET_ARCH_${kernel}} \
506	    KERNCONF=${kernel} \
507	    > _.${TARGET}.${kernel} 2>&1 || \
508	    (echo "${TARGET} ${kernel} kernel failed," \
509	    "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
510.endfor
511universe: universe_epilogue
512universe_epilogue:
513	@echo "--------------------------------------------------------------"
514	@echo ">>> make universe completed on `LC_ALL=C date`"
515	@echo "                      (started ${STARTTIME})"
516	@echo "--------------------------------------------------------------"
517.if defined(DOING_TINDERBOX)
518	@if [ -e ${FAILFILE} ] ; then \
519		echo "Tinderbox failed:" ;\
520		cat ${FAILFILE} ;\
521		exit 1 ;\
522	fi
523.endif
524.endif
525
526buildLINT:
527	${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
528
529.if defined(.PARSEDIR)
530.if make(universe)
531# we do not want a failure of one branch abort all.
532MAKE_JOB_ERROR_TOKEN= no
533.export MAKE_JOB_ERROR_TOKEN
534.endif
535.endif
536