Deleted Added
full compact
Makefile (146840) Makefile (146874)
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 146840 2005-05-31 21:16:50Z obrien $
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 146874 2005-06-01 15:32:57Z obrien $
2
3PROG= loader.sym
4INTERNALPROG=
5NEWVERSWHAT= "bootstrap loader" i386
6
7# architecture-specific loader code
8SRCS= main.c conf.c vers.c
9

--- 10 unchanged lines hidden (view full) ---

20
21.if !defined(NO_FORTH)
22# Enable BootForth
23BOOT_FORTH= yes
24CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386
25LIBFICL= ${.OBJDIR}/../../ficl/libficl.a
26.endif
27
2
3PROG= loader.sym
4INTERNALPROG=
5NEWVERSWHAT= "bootstrap loader" i386
6
7# architecture-specific loader code
8SRCS= main.c conf.c vers.c
9

--- 10 unchanged lines hidden (view full) ---

20
21.if !defined(NO_FORTH)
22# Enable BootForth
23BOOT_FORTH= yes
24CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386
25LIBFICL= ${.OBJDIR}/../../ficl/libficl.a
26.endif
27
28.if !defined(LOADER_NO_BZIP2_SUPPORT)
28.if defined(LOADER_BZIP2_SUPPORT)
29CFLAGS+= -DLOADER_BZIP2_SUPPORT
30.endif
31.if !defined(LOADER_NO_GZIP_SUPPORT)
32CFLAGS+= -DLOADER_GZIP_SUPPORT
33.endif
34
35# Always add MI sources
36.PATH: ${.CURDIR}/../../common

--- 62 unchanged lines hidden ---
29CFLAGS+= -DLOADER_BZIP2_SUPPORT
30.endif
31.if !defined(LOADER_NO_GZIP_SUPPORT)
32CFLAGS+= -DLOADER_GZIP_SUPPORT
33.endif
34
35# Always add MI sources
36.PATH: ${.CURDIR}/../../common

--- 62 unchanged lines hidden ---