diff options
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/common/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/boot/common/Makefile.inc b/sys/boot/common/Makefile.inc index 3f171a3d61e5..b2227c80ecd9 100644 --- a/sys/boot/common/Makefile.inc +++ b/sys/boot/common/Makefile.inc @@ -19,15 +19,15 @@ SRCS+= dev_net.c .endif # Machine-independant ISA PnP -.if HAVE_ISABUS +.if defined(HAVE_ISABUS) SRCS+= isapnp.c .endif -.if HAVE_PNP +.if defined(HAVE_PNP) SRCS+= pnp.c .endif # Forth interpreter -.if BOOT_FORTH +.if defined(BOOT_FORTH) SRCS+= interp_forth.c MAN+= ../forth/loader.conf.5 MAN+= ../forth/loader.4th.8 |