Makefile revision 1.3
1# $NetBSD: Makefile,v 1.3 1998/07/19 21:41:17 dbj Exp $ 2 3S= ${.CURDIR}/../../../.. 4 5### find out what to use for libkern 6KERN_AS= library 7.include "${S}/lib/libkern/Makefile.inc" 8#LIBKERN= ${KERNLIB} 9 10### find out what to use for libz 11Z_AS= library 12.include "${S}/lib/libz/Makefile.inc" 13#LIBZ= ${ZLIB} 14 15### find out what to use for libsa 16SA_AS= library 17#SAMISCMAKEFLAGS= SA_USE_CREAD=yes 18.include "${S}/lib/libsa/Makefile.inc" 19#LIBSA= ${SALIB} 20 21RELOC= 4380000 22 23# XXX make defs arch-indep. 24INCLUDES+= -I${.CURDIR} -I${.CURDIR}/obj.${MACHINE} -I${S}/arch -I${S} -I${S}/lib/libsa -I${S}/lib/libkern 25DEFS+= -D_STANDALONE -DMC68040 -DSUPPORT_BOOTP -DSUPPORT_DHCP -DDEBUG # -DEN_DEBUG -DNETIF_DEBUG # -DSD_DEBUG -DSCSI_DEBUG 26SAMISCCPPFLAGS= -DSUPPORT_DHCP -DSUPPORT_BOOTP -DINSECURE # -DBOOTP_DEBUG -DETHER_DEBUG -DNET_DEBUG # -DNETIF_DEBUG -DNFS_DEBUG -DARP_DEBUG 27COPTS+= -Wall -Wno-main 28CFLAGS+= -nostdinc ${INCLUDES} ${DEFS} 29LIBCRT0= 30 31PROG= boot 32SRCS= boot.c machdep.c conf.c devopen.c rtc.c sd.c scsi.c en.c dev_net.c 33# @@@ dev_net.c should really be in libsa, but it doesn't 34# declare ip_convertaddr correctly, so I put it here _temporarily_. 35 36NOMAN= 1 37BINDIR= /usr/mdec 38#LIBS= ${SALIB} ${KERNLIB} ${ZLIB} 39LIBS= ${SALIB} ${KERNLIB} 40#OBJS+= dev_net.o 41 42${PROG}: links srt0.o ${OBJS} vers.o ${LIBS} 43 ${LD} -N -Ttext ${RELOC} -e start srt0.o ${OBJS} ${LIBS} vers.o -o $@ 44 @${SIZE} $@ 45 46# this looks useful to me ... let's see when it will be an official part 47# of libsa 48#dev_net.o : ${S}/lib/libsa/dev_net.c 49# ${COMPILE.c} -DSUPPORT_BOOTP ${.IMPSRC} 50 51# startup 52 53srt0.o: ${.CURDIR}/srt0.s 54 ${CC} -m68040 ${INCPATH} ${DEFS} -c ${.CURDIR}/srt0.s 55 56vers.c: newvers 57newvers: 58 sh ${.CURDIR}/newvers.sh 59 ${CC} ${CFLAGS} -c vers.c 60 61#installboot: ${.CURDIR}/installboot.sh 62# @rm -f installboot 63# cp -p ${.CURDIR}/installboot.sh installboot 64 65# utilities 66 67links: 68 rm -f machine 69 ln -s ${S}/arch/${MACHINE}/include machine 70 rm -f ${MACHINE_ARCH} 71 ln -s ${S}/arch/${MACHINE_ARCH}/include ${MACHINE_ARCH} 72 rm -f limits.h 73 ln -s machine/limits.h limits.h 74 75clean: 76 rm -f *.o errs core make.out 77 rm -f a.out boot cat ls 78 rm -f machine ${MACHINE_ARCH} limits.h 79 80.include <bsd.prog.mk> 81