Home | History | Annotate | Line # | Download | only in boot
      1  1.63   mlelstv #	$NetBSD: Makefile,v 1.63 2024/06/08 06:39:57 mlelstv Exp $
      2  1.34     lukem 
      3  1.54  christos .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.56  christos DIR_SA = 	${DIR_TOP}/lib/libsa
     15  1.38        is DIR_LIBZ=
     16  1.56  christos DIR_KERN=	${DIR_TOP}/lib/libkern
     17  1.56  christos DIR_KERN_MD=	${DIR_TOP}/lib/libkern/arch/$(MACHINE_ARCH)
     18  1.56  christos 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.57       rin COBJS+=  ufs.o ustarfs.o ffsv2.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.55  christos 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.62       rin DEFS = -D_STANDALONE -DSA_EXEC_ANYOWNER -DSA_HARDCODED_SECSIZE
     54  1.24    mhitch DEFS += -D__INTERNAL_LIBSA_CREAD
     55  1.53   mlelstv DEFS += -DSERCONSOLE
     56  1.63   mlelstv DEFS += -DLIBSA_NO_RAW_ACCESS
     57  1.24    mhitch SOBJS += cread.o
     58  1.38        is 
     59  1.38        is #XX#SOBJS += adler32.o crc32.o inflate.o trees.o \
     60  1.38        is #XX#       zutil.o infback.o inftrees.o inffast.o
     61  1.38        is 
     62  1.25   aymeric #DEFS += -DBOOT_ELF32 -DBOOT_AOUT
     63  1.24    mhitch SOBJS += loadfile.o loadfile_aout.o loadfile_elf32.o
     64  1.24    mhitch 
     65  1.34     lukem NETBSD_VERS!=	${HOST_SH} ${.CURDIR}/../../../../../conf/osrelease.sh
     66  1.24    mhitch DEFS+=	-DNETBSD_VERS='"${NETBSD_VERS}"'
     67   1.1        is 
     68   1.2        is ### main target: ###
     69   1.1        is 
     70  1.49      matt realall: ${FILES}
     71  1.24    mhitch 
     72  1.55  christos CLEANFILES += boot.amiga x.out xxstart.o libboot.a
     73  1.55  christos 
     74  1.56  christos VERSIONFLAGS+=-n
     75  1.55  christos .include "${S}/conf/newvers_stand.mk"
     76   1.1        is 
     77  1.18      tron .include <bsd.prog.mk>
     78  1.49      matt .include <bsd.klinks.mk>
     79  1.18      tron 
     80   1.2        is ### special  rules for bootblocks ###
     81   1.1        is 
     82  1.39   tsutsui INCPATH = -nostdinc -I${DIR_TOP} -I${DIR_TOP}/lib/libsa
     83  1.39   tsutsui INCPATH += -I${DIR_TOP}/../common/dist/zlib
     84  1.39   tsutsui INCPATH += -I${.CURDIR}
     85  1.24    mhitch INCPATH += -I${.CURDIR}/../../.. -I${.OBJDIR}
     86  1.43       mrg INCPATH += -I${.CURDIR}/../elf2bb
     87  1.10        is 
     88  1.60       rin AFLAGS += -march=68030 -mcpu=68030
     89  1.60       rin CAFLAGS += -Wa,-march=68030 -Wa,-mcpu=68030 ${INCPATH}
     90   1.1        is 
     91  1.48     joerg COPTIM= -Os -fomit-frame-pointer -fcse-follow-jumps -fcse-skip-blocks
     92  1.60       rin COPTIM+= -m68060 -Wa,-march=68030 -Wa,-mcpu=68030 -fno-unwind-tables
     93  1.39   tsutsui CFLAGS= -ffreestanding ${COPTIM} ${INCPATH} ${DEFS}
     94  1.39   tsutsui CFLAGS+= -Werror
     95  1.39   tsutsui CFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith
     96   1.1        is 
     97   1.2        is .c.o:
     98  1.49      matt 	${_MKTARGET_COMPILE}
     99  1.47       chs 	${CC} ${CFLAGS} ${COPTS.${.IMPSRC:T}} -S $< -o $*.s
    100  1.43       mrg 	${TXLT} < $*.s | ${AS} ${AFLAGS} -o $@
    101   1.2        is 	rm $*.s
    102   1.1        is 
    103  1.49      matt .s.o:
    104  1.49      matt 	${_MKTARGET_COMPILE}
    105  1.49      matt 	${CC} ${CAFLAGS} ${COPTS} -x assembler-with-cpp -o $@ -c $<
    106  1.49      matt 
    107  1.49      matt .S.o:
    108  1.49      matt 	${_MKTARGET_COMPILE}
    109  1.49      matt 	${CC} ${CAFLAGS} ${COPTS} -x assembler-with-cpp -o $@ -c $<
    110   1.1        is 
    111  1.24    mhitch boot.amiga: x.out
    112  1.49      matt 	${_MKTARGET_CREATE}
    113  1.63   mlelstv 	${RELOC2BB} -d -S x.out $@ || (${NM} -u x.out && false)
    114   1.2        is 
    115  1.38        is x.out: xxstart.o libboot.a ${LIBZ}
    116  1.49      matt 	${_MKTARGET_LINK}
    117  1.45       mrg 	${LD} ${LDFLAGS} -r -dc -e start -o $@ $>
    118  1.22    mhitch 	${SIZE} $@
    119  1.22    mhitch 	${NM} -u $@
    120   1.2        is 
    121   1.2        is xxstart.o: ${.CURDIR}/bbstart.s
    122  1.49      matt 	${_MKTARGET_COMPILE}
    123  1.18      tron 	${CC} ${CAFLAGS} ${COPTS} -x assembler-with-cpp \
    124   1.2        is 		-o $@ -c $>
    125   1.2        is 
    126  1.18      tron libboot.a: ${OBJS}
    127  1.49      matt 	${_MKTARGET_BUILD}
    128  1.49      matt 	${AR} crs $@ $> && ${RANLIB} $@
    129   1.2        is 
    130  1.10        is # make sure these are built:
    131   1.2        is 
    132  1.10        is ${COBJS}: ${TXLT}
    133  1.24    mhitch ${FILES}: ${RELOC2BB}
    134  1.26   aymeric 
    135  1.26   aymeric .include "${.CURDIR}/../Makefile.booters"
    136