Home | History | Annotate | Line # | Download | only in sshramdisk
Makefile revision 1.9.2.1
      1  1.9.2.1  pgoyette #	$NetBSD: Makefile,v 1.9.2.1 2017/01/07 08:53:42 pgoyette Exp $
      2      1.1   garbled 
      3      1.1   garbled .include <bsd.own.mk>
      4      1.1   garbled .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
      5      1.1   garbled 
      6      1.1   garbled IMAGE=		sshramdisk.fs
      7  1.9.2.1  pgoyette IMAGESIZE=	20000k
      8      1.1   garbled MAKEFS_FLAGS=	-f 15
      9      1.1   garbled 
     10      1.1   garbled WARNS=		1
     11      1.1   garbled DBG=		-Os
     12      1.1   garbled 
     13      1.1   garbled CRUNCHBIN=	ramdiskbin
     14      1.1   garbled LISTS=		${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst
     15      1.1   garbled MTREECONF=	${.CURDIR}/mtree.conf
     16      1.9    martin .if empty(MACHINE_ARCH:M*eb)
     17      1.1   garbled IMAGEENDIAN=	le
     18      1.9    martin .else
     19      1.9    martin IMAGEENDIAN=	be
     20      1.9    martin .endif
     21      1.1   garbled MAKEDEVTARGETS=	ramdisk
     22      1.1   garbled IMAGEDEPENDS=	${CRUNCHBIN} \
     23      1.1   garbled 		dot.profile master.passwd sshd_config ssh_host_dsa_key \
     24      1.1   garbled 		${NETBSDSRCDIR}/etc/group \
     25      1.1   garbled 		${NETBSDSRCDIR}/etc/netconfig ${DISTRIBDIR}/common/protocols \
     26      1.1   garbled 		${DISTRIBDIR}/common/services
     27      1.4    martin IMAGEPREBUILD=	${TOOL_PAX} -rw -pp ${DESTDIR}/libdata/firmware ${WORKDIR}
     28      1.1   garbled 
     29      1.1   garbled # Use stubs to eliminate some large stuff from libc
     30      1.1   garbled HACKSRC=	${DISTRIBDIR}/utils/libhack
     31      1.1   garbled .include	"${HACKSRC}/Makefile.inc"
     32      1.1   garbled ${CRUNCHBIN}:	libhack.o
     33      1.1   garbled 
     34      1.1   garbled USE_PAM := no
     35      1.1   garbled USE_YP := no
     36      1.1   garbled USE_SKEY := no
     37      1.1   garbled USE_KERBEROS := no
     38      1.1   garbled USE_LDAP := no
     39      1.1   garbled .export USE_PAM
     40      1.1   garbled .export USE_YP
     41      1.1   garbled .export USE_SKEY
     42      1.1   garbled .export USE_KERBEROS
     43      1.1   garbled .export USE_LDAP
     44      1.1   garbled 
     45      1.1   garbled .include "${DISTRIBDIR}/common/Makefile.crunch"
     46      1.1   garbled .include "${DISTRIBDIR}/common/Makefile.dhcpcd"
     47      1.1   garbled .include "${DISTRIBDIR}/common/Makefile.makedev"
     48      1.1   garbled .include "${DISTRIBDIR}/common/Makefile.image"
     49      1.1   garbled 
     50      1.1   garbled release:
     51      1.1   garbled 
     52      1.1   garbled .include <bsd.prog.mk>
     53