diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-24 23:49:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-24 23:49:04 +0000 |
commit | fd4cb84bb9af6cbfac53f510a5d1baa9bf4e242b (patch) | |
tree | d56fb02e443a7156e532771e6d0b4c2a5fcbb817 /sys/arch/pmax/stand/Makefile | |
parent | a158e111720ebb5bbf6c8b6cafaf8b83ebe2b613 (diff) |
bye bye, with prejudice
Diffstat (limited to 'sys/arch/pmax/stand/Makefile')
-rw-r--r-- | sys/arch/pmax/stand/Makefile | 110 |
1 files changed, 0 insertions, 110 deletions
diff --git a/sys/arch/pmax/stand/Makefile b/sys/arch/pmax/stand/Makefile deleted file mode 100644 index cc13b44058e..00000000000 --- a/sys/arch/pmax/stand/Makefile +++ /dev/null @@ -1,110 +0,0 @@ -# $NetBSD: Makefile,v 1.8 1996/10/18 06:08:15 thorpej Exp $ -# @(#)Makefile 8.3 (Berkeley) 2/16/94 - -DESTDIR= -STAND= ../../stand -#VPATH= ${STAND} - -# RELOC=80200000 allows for boot prog up to 1D0000 (1900544) bytes long -RELOC= 80200000 - -S= ${.CURDIR}/../../.. - -DEFS= -DSTANDALONE -DSMALL -CFLAGS= -O2 ${INCPATH} ${DEFS} -AFLAGS= -O2 ${INCPATH} ${DEFS} -D_LOCORE - -.PATH: ${S}/arch/${MACHINE_ARCH}/${MACHINE_ARCH} -.PATH: ${S}/stand ${S}/lib/libsa - -#INCPATH=-I. -I/sys -INCPATH=-I${.CURDIR} -I${.CURDIR}/../.. -I${S} -I${S}/lib/libsa - -### find out what to use for libkern -.include "$S/lib/libkern/Makefile.inc" -#LIBKERN= ${KERNLIB} -#KERNLIB= ${.CURDIR}/../compile/libkern.a - -.include "$S/lib/libsa/Makefile.inc" -LIBSA= ${SA_LIB} - -# not yet: need to write libsa/Makefile.inc first -LIBS= ${.OBJDIR}/libdrive.a ${.CURDIR}/libsa/libsa.a ${KERNLIB} -#LIBS= libdrive.a libsa/libsa.a ../../libkern/obj/libkern.a - -DRIVERS= rz.c -SRCS= ${DRIVERS} -#STUFF= callvec.c devopen.c getenv.c gets.c strcmp.c -STUFF= - -ALL= boot mkboot mkboottape dec_label rzboot bootrz - -.s.o: - ${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \ - ${AS} -o ${.TARGET} - -all: ${ALL} - -boot: ${LIBS} - -#libsa/libsa.a:: -# cd libsa; make - -${.OBJDIR}/libdrive.a: conf.o ${DRIVERS:.c=.o} - ar crv $@ $? - ranlib $@ - -# depend on DEFS - -#before other deps on bootconf.o -bootconf.o: conf.o - rm -f bootconf.c - ln -s ${.CURDIR}/conf.c bootconf.c - ${CC} -c ${CFLAGS} -DBOOT bootconf.c - rm -f bootconf.c - - -# bootable from real disks - -boot: start.o boot.o bootconf.o filesystem.o ${LIBS} - ld -Map boot.map -N -Ttext ${RELOC} -e start start.o boot.o bootconf.o filesystem.o ${LIBS} -o boot.elf - elf2aout boot.elf boot - -start.o: ${.CURDIR}/start.S - -# ${CPP} -E ${CFLAGS:M-[ID]*} -D_LOCORE ${AINC} ${.IMPSRC} | \ -# ${AS} -o ${.TARGET} - -mkboot: ${.CURDIR}/mkboot.c - ${CC} ${CFLAGS} -o mkboot ${.CURDIR}/mkboot.c - -mkboottape: ${.CURDIR}/mkboottape.c - ${CC} ${CFLAGS} -o mkboottape ${.CURDIR}/mkboottape.c - -dec_label: ${.CURDIR}/dec_label.c - ${CC} ${CFLAGS} -o dec_label ${.CURDIR}/dec_label.c - -rzboot bootrz: mkboot boot - ./mkboot boot rzboot bootrz - -# utilities - -clean cleandir: - rm -f .depend *.o *.exe *.i errs make.out core* - rm -f a.out ${ALL} - rm -f boot[a-z][a-z] [a-z][a-z]boot - rm -f libdrive.a - cd libsa; make cleandir - -install: - ./mkboot boot rzboot bootrz - ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 rzboot ${DESTDIR}/usr/mdec - ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 bootrz ${DESTDIR}/usr/mdec - -depend: ${SRCS} - mkdep ${INCPATH} ${DEFS} ${SRCS} - mkdep -a -p ${INCPATH} ${DEFS} mkboot.c mkboottape.c - cd libsa; make depend - -.include <bsd.dep.mk> -.include <bsd.obj.mk> |