39dfb2bc55
. as mkfs.mfs is now cross compilable, we can remove the ext2 ramdisk special case for cross compilation.
38 lines
879 B
Makefile
38 lines
879 B
Makefile
# Makefile for memory driver (MEMORY)
|
|
|
|
PROG= memory
|
|
SRCS= memory.c imgrd.mfs
|
|
OBJS= ${SRCS:N*.h:R:S/$/.o/g}
|
|
MKBUILDEXT2RD?= no
|
|
|
|
RAMDISK_PATH= ${NETBSDSRCDIR}/drivers/ramdisk
|
|
DPADD+= ${LIBBLOCKDRIVER} ${LIBCHARDRIVER} ${LIBSYS}
|
|
LDADD+= -lblockdriver -lchardriver -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
CPPFLAGS.memory.c+= -I${NETBSDSRCDIR}
|
|
|
|
imgrd.d: touch-genfiles
|
|
touch-genfiles:
|
|
[ -e ../ramdisk/image ] || touch -t 197001020000.00 ../ramdisk/image
|
|
|
|
|
|
.SUFFIXES: .mfs .c .o
|
|
|
|
# 'elf32-${ARCH}-minix' below should really be ${MACHINE_GNU_PLATFORM}
|
|
# but bsd.own.mk has to be upgraded for that.
|
|
.mfs.o:
|
|
${_MKTARGET_CREATE}
|
|
${OBJCOPY} -Ibinary -B${MACHINE_ARCH} -Oelf32-${MACHINE_ARCH}-minix $< $@
|
|
|
|
${RAMDISK_PATH}/image: .PHONY
|
|
${MAKE} -C ${RAMDISK_PATH} image
|
|
|
|
imgrd.mfs: ${RAMDISK_PATH}/image
|
|
ln -fs ${RAMDISK_PATH}/image $@
|
|
CLEANFILES+= imgrd.mfs
|
|
|
|
.include <minix.bootprog.mk>
|