Home | History | Annotate | Line # | Download | only in boot
Makefile revision 1.53.2.1
      1  1.53.2.1  pgoyette #	$NetBSD: Makefile,v 1.53.2.1 2016/11/04 14:48:57 pgoyette Exp $
      2      1.34     lukem 
      3  1.53.2.1  pgoyette .include <bsd.init.mk>
      4      1.34     lukem .include <bsd.sys.mk>		# for HOST_SH
      5       1.1        is 
      6       1.2        is ### what we need:
      7       1.1        is 
      8      1.38        is #XX# lines replace similar lines, or are added, in case we want to
      9      1.38        is #XX# compile LIBZ ourselves to save a few bytes (think TXLT)
     10      1.38        is 
     11      1.38        is #XX#DIR_LIBZ =	${DIR_TOP}/../common/dist/zlib
     12      1.38        is 
     13      1.10        is DIR_TOP=	${.CURDIR}/../../../../..
     14      1.10        is DIR_SA = 	${DIR_TOP}/lib/libsa
     15      1.38        is DIR_LIBZ=
     16      1.10        is DIR_KERN=	${DIR_TOP}/lib/libkern
     17      1.10        is DIR_KERN_MD=	${DIR_TOP}/lib/libkern/arch/$(MACHINE_ARCH)
     18      1.36        is DIR_LIBC=	${DIR_TOP}/../common/lib/libc
     19       1.1        is 
     20      1.36        is .PATH:  $(DIR_SA) ${DIR_LIBZ} $(DIR_KERN) $(DIR_KERN_MD) \
     21      1.36        is 	${DIR_LIBC}/gen ${DIR_LIBC}/arch/m68k/gen \
     22      1.36        is 	${DIR_LIBC}/inet ${DIR_LIBC}/arch/m68k/inet \
     23      1.36        is 	${DIR_LIBC}/quad ${DIR_LIBC}/arch/m68k/quad \
     24      1.36        is 	${DIR_LIBC}/string ${DIR_LIBC}/arch/m68k/string
     25       1.1        is 
     26      1.38        is ### find out what to use for libz
     27      1.38        is 
     28      1.38        is S=	${DIR_TOP}	# ????
     29      1.38        is Z_AS= library
     30      1.38        is .include "${DIR_TOP}/lib/libz/Makefile.inc"
     31      1.38        is LIBZ= ${ZLIB}
     32      1.38        is 
     33       1.2        is # prefer our assembler versions over assembler, and assembler over C:
     34       1.1        is 
     35       1.2        is .SUFFIXES:
     36      1.42       mrg .SUFFIXES: .out .o .po .pico .so .s .S .c .cc .C .f .y .l .ln .m4 .sh
     37       1.1        is 
     38      1.24    mhitch FILES= boot.amiga
     39      1.13     veego BINDIR=/usr/mdec
     40       1.1        is 
     41      1.15        is COBJS = main.o console.o xd.o twiddle.o bzero.o gets.o
     42      1.19        is COBJS+=  lseek.o open.o read.o close.o dev.o errno.o
     43      1.27    mhitch COBJS+=  ufs.o ustarfs.o panic.o vers.o files.o
     44      1.37        is COBJS+=  divdi3.o moddi3.o qdivrem.o
     45       1.1        is 
     46      1.23    mhitch SOBJS = alloc.o ashrdi3.o ashldi3.o bcopy.o muldi3.o printf.o startit.o
     47      1.38        is SOBJS += strlen.o memcmp.o memset.o strerror.o strncmp.o
     48      1.38        is SOBJS += libstubs.o
     49      1.37        is 
     50       1.2        is OBJS=	$(SOBJS) $(COBJS)
     51       1.1        is 
     52      1.41      elad #XX#DEFS = -D_STANDALONE -DSA_EXEC_ANYOWNER -DDYNAMIC_CRC_TABLE -DNOBYFOUR -UBYFOUR 
     53      1.41      elad DEFS = -D_STANDALONE -DSA_EXEC_ANYOWNER 
     54      1.24    mhitch DEFS += -D__INTERNAL_LIBSA_CREAD
     55      1.53   mlelstv DEFS += -DSERCONSOLE
     56      1.24    mhitch SOBJS += cread.o
     57      1.38        is 
     58      1.38        is #XX#SOBJS += adler32.o crc32.o inflate.o trees.o \
     59      1.38        is #XX#       zutil.o infback.o inftrees.o inffast.o
     60      1.38        is 
     61      1.25   aymeric #DEFS += -DBOOT_ELF32 -DBOOT_AOUT
     62      1.24    mhitch SOBJS += loadfile.o loadfile_aout.o loadfile_elf32.o
     63      1.24    mhitch 
     64      1.34     lukem NETBSD_VERS!=	${HOST_SH} ${.CURDIR}/../../../../../conf/osrelease.sh
     65      1.24    mhitch DEFS+=	-DNETBSD_VERS='"${NETBSD_VERS}"'
     66       1.1        is 
     67       1.2        is ### main target: ###
     68       1.1        is 
     69      1.49      matt realall: ${FILES}
     70      1.24    mhitch 
     71      1.49      matt CLEANFILES += boot.amiga x.out xxstart.o libboot.a vers.c
     72       1.1        is 
     73      1.18      tron .include <bsd.prog.mk>
     74      1.49      matt .include <bsd.klinks.mk>
     75      1.18      tron 
     76       1.2        is ### special  rules for bootblocks ###
     77       1.1        is 
     78      1.39   tsutsui INCPATH = -nostdinc -I${DIR_TOP} -I${DIR_TOP}/lib/libsa
     79      1.39   tsutsui INCPATH += -I${DIR_TOP}/../common/dist/zlib
     80      1.39   tsutsui INCPATH += -I${.CURDIR}
     81      1.24    mhitch INCPATH += -I${.CURDIR}/../../.. -I${.OBJDIR}
     82      1.43       mrg INCPATH += -I${.CURDIR}/../elf2bb
     83      1.10        is 
     84      1.52   tsutsui AFLAGS += -march=68030 -mcpu=68030 -l
     85      1.52   tsutsui CAFLAGS += -Wa,-l -Wa,-march=68030 -Wa,-mcpu=68030 ${INCPATH}
     86       1.1        is 
     87      1.48     joerg COPTIM= -Os -fomit-frame-pointer -fcse-follow-jumps -fcse-skip-blocks
     88      1.52   tsutsui COPTIM+= -Wa,-l -m68060 -Wa,-march=68030 -Wa,-mcpu=68030 -fno-unwind-tables
     89      1.39   tsutsui CFLAGS= -ffreestanding ${COPTIM} ${INCPATH} ${DEFS}
     90      1.39   tsutsui CFLAGS+= -Werror
     91      1.39   tsutsui CFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith
     92       1.1        is 
     93      1.47       chs # XXX work around a gcc 4.5 bug
     94      1.47       chs COPTS.cread.c = -O1
     95      1.47       chs 
     96       1.2        is .c.o:
     97      1.49      matt 	${_MKTARGET_COMPILE}
     98      1.47       chs 	${CC} ${CFLAGS} ${COPTS.${.IMPSRC:T}} -S $< -o $*.s
     99      1.43       mrg 	${TXLT} < $*.s | ${AS} ${AFLAGS} -o $@
    100       1.2        is 	rm $*.s
    101       1.1        is 
    102      1.49      matt .s.o:
    103      1.49      matt 	${_MKTARGET_COMPILE}
    104      1.49      matt 	${CC} ${CAFLAGS} ${COPTS} -x assembler-with-cpp -o $@ -c $<
    105      1.49      matt 
    106      1.49      matt .S.o:
    107      1.49      matt 	${_MKTARGET_COMPILE}
    108      1.49      matt 	${CC} ${CAFLAGS} ${COPTS} -x assembler-with-cpp -o $@ -c $<
    109       1.1        is 
    110      1.24    mhitch boot.amiga: x.out
    111      1.49      matt 	${_MKTARGET_CREATE}
    112      1.46       mrg 	${RELOC2BB} -S x.out $@ || (${NM} -u x.out && false)
    113       1.2        is 
    114      1.38        is x.out: xxstart.o libboot.a ${LIBZ}
    115      1.49      matt 	${_MKTARGET_LINK}
    116      1.45       mrg 	${LD} ${LDFLAGS} -r -dc -e start -o $@ $>
    117      1.22    mhitch 	${SIZE} $@
    118      1.22    mhitch 	${NM} -u $@
    119       1.2        is 
    120       1.2        is xxstart.o: ${.CURDIR}/bbstart.s
    121      1.49      matt 	${_MKTARGET_COMPILE}
    122      1.18      tron 	${CC} ${CAFLAGS} ${COPTS} -x assembler-with-cpp \
    123       1.2        is 		-o $@ -c $>
    124       1.2        is 
    125      1.18      tron libboot.a: ${OBJS}
    126      1.49      matt 	${_MKTARGET_BUILD}
    127      1.49      matt 	${AR} crs $@ $> && ${RANLIB} $@
    128       1.2        is 
    129      1.43       mrg vers.o: vers.c
    130      1.24    mhitch vers.c:	${.CURDIR}/version
    131      1.49      matt 	${_MKTARGET_CREATE}
    132      1.44     joerg 	${HOST_SH} ${DIR_TOP}/conf/newvers_stand.sh \
    133      1.44     joerg 	    ${${MKREPRO} == "yes" :?:-D} -N ${.CURDIR}/version "amiga"
    134      1.24    mhitch 
    135      1.10        is # make sure these are built:
    136       1.2        is 
    137      1.10        is ${COBJS}: ${TXLT}
    138      1.24    mhitch ${FILES}: ${RELOC2BB}
    139      1.26   aymeric 
    140      1.26   aymeric .include "${.CURDIR}/../Makefile.booters"
    141