Remove /* within block comment.
[dragonfly/netmp.git] / sys / boot / ficl / Makefile
blobf1c4034545a8359133f15909cba47b3885835939
1 # $FreeBSD: src/sys/boot/ficl/Makefile,v 1.35 2003/06/30 19:08:49 ru Exp $
2 # $DragonFly: src/sys/boot/ficl/Makefile,v 1.10 2008/03/30 18:11:58 swildner Exp $
4 .if ${MACHINE_ARCH} == "amd64"
5 .MAKEFLAGS: MACHINE_ARCH=i386 MACHINE=i386 REALLY_AMD64=true
6 .endif
8 .PATH: ${.CURDIR}/${MACHINE_ARCH}
9 BASE_SRCS= dict.c ficl.c fileaccess.c float.c loader.c math64.c \
10 prefix.c search.c stack.c tools.c vm.c words.c
12 SRCS= ${BASE_SRCS} sysdep.c softcore.c
14 CLEANFILES= softcore.c testmain testmain.o
15 CFLAGS+= -ffreestanding
16 .if ${MACHINE_ARCH} == "i386"
17 CFLAGS+= -mpreferred-stack-boundary=2
18 CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 # Do not use fp regs
19 CFLAGS+= -mno-sse3 # in integer code
20 .endif
21 .if HAVE_PNP
22 CFLAGS+= -DHAVE_PNP
23 .endif
24 .ifmake testmain
25 CFLAGS+= -DTESTMAIN -D_TESTMAIN
26 SRCS+= testmain.c
27 PROG= testmain
28 .include <bsd.prog.mk>
29 .else
30 OBJS+= stack_protector.o
31 LIB= ficl
32 INTERNALLIB= yes
34 stack_protector.o: ../../libkern/stack_protector.c
36 .include <bsd.lib.mk>
37 .endif
39 # Standard softwords
40 .PATH: ${.CURDIR}/softwords
41 SOFTWORDS= softcore.fr jhlocal.fr marker.fr freebsd.fr ficllocal.fr \
42 ifbrack.fr
43 # Optional OO extension softwords
44 #SOFTWORDS+= oo.fr classes.fr
46 .if defined(REALLY_AMD64)
47 CFLAGS+= -m32 -I.
48 .endif
50 CFLAGS+= -I${.CURDIR} -I${.CURDIR}/${MACHINE_ARCH} -I${.CURDIR}/../common
52 softcore.c: ${SOFTWORDS} softcore.awk
53 (cd ${.CURDIR}/softwords; cat ${SOFTWORDS} \
54 | awk -f softcore.awk -v datestamp="`LC_ALL=C date`") > ${.TARGET}
56 .if defined(REALLY_AMD64)
57 ${SRCS:M*.c:R:S/$/.o/g}: machine
59 beforedepend ${OBJS}: machine
61 machine:
62 ${LN} -sf ${.CURDIR}/../../i386/include machine
64 CLEANFILES+= machine
65 .endif