Home | History | Annotate | Line # | Download | only in bootxx
Makefile revision 1.17.48.1
      1  1.17.48.1   bouyer #	$NetBSD: Makefile,v 1.17.48.1 2008/01/11 19:19:10 bouyer Exp $
      2        1.9    lukem 
      3        1.9    lukem NOMAN= # defined
      4        1.5  tsutsui 
      5        1.6  tsutsui .include <bsd.own.mk>
      6        1.1  tsutsui 
      7        1.1  tsutsui COMMON=	${.CURDIR}/../common
      8        1.4  tsutsui COMMONOBJ!=	cd ${COMMON} && ${PRINTOBJDIR}
      9        1.1  tsutsui 
     10        1.1  tsutsui .PATH:	${COMMON}
     11        1.1  tsutsui 
     12        1.1  tsutsui PROG= bootxx
     13        1.1  tsutsui SRCS= start.S bootxx.c
     14        1.1  tsutsui SRCS+= romcalls.S putchar.c
     15        1.1  tsutsui STRIPFLAG=
     16        1.1  tsutsui BINMODE= 444
     17        1.1  tsutsui 
     18        1.1  tsutsui SIZE?= size
     19       1.10    lukem OBJCOPY?= objcopy
     20        1.1  tsutsui 
     21       1.13      jmc S!= cd ${.CURDIR}/../../../..; pwd
     22        1.1  tsutsui 
     23       1.16    lukem LINKFLAGS= -x -N -Ttext 0 -e start
     24  1.17.48.1   bouyer CFLAGS= -Os -Wall -Werror
     25  1.17.48.1   bouyer CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith
     26  1.17.48.1   bouyer #CFLAGS+= -Wno-format-zero-length -Wno-sign-compare
     27        1.1  tsutsui 
     28        1.3  tsutsui CPPFLAGS+= -D_STANDALONE # -DBOOTXX_DEBUG
     29        1.1  tsutsui CPPFLAGS+= -nostdinc -I${.OBJDIR} -I${S}
     30        1.1  tsutsui AFLAGS= -D_LOCORE
     31        1.1  tsutsui 
     32       1.10    lukem CLEANFILES+= machine m68k ${PROG}.sym
     33        1.1  tsutsui 
     34        1.1  tsutsui L= ${COMMONOBJ}/lib
     35        1.1  tsutsui LIBS= ${L}/sa/libsa.a ${L}/kern/libkern.a
     36        1.1  tsutsui 
     37       1.15    skrll .if !make(obj) && !make(clean) && !make(cleandir)
     38       1.13      jmc .BEGIN: machine m68k
     39        1.2  mycroft .NOPATH: machine m68k
     40        1.1  tsutsui 
     41        1.2  mycroft machine::
     42        1.1  tsutsui 	-rm -f $@
     43        1.1  tsutsui 	ln -s ${S}/arch/${MACHINE}/include $@
     44        1.1  tsutsui 
     45        1.2  mycroft m68k::
     46        1.1  tsutsui 	-rm -f $@
     47        1.1  tsutsui 	ln -s ${S}/arch/m68k/include $@
     48       1.15    skrll .endif
     49        1.1  tsutsui 
     50       1.13      jmc ${PROG}: ${OBJS} ${LIBS}
     51       1.17    lukem 	${_MKTARGET_LINK}
     52       1.16    lukem 	${LD} ${LINKFLAGS} -o ${.TARGET}.sym ${OBJS} ${LIBS}
     53       1.10    lukem 	${SIZE} ${.TARGET}.sym
     54       1.10    lukem 	${OBJCOPY} -O binary ${.TARGET}.sym ${.TARGET}
     55        1.6  tsutsui 
     56        1.6  tsutsui .include <bsd.prog.mk>
     57