1 # $NetBSD: Makefile,v 1.1 2013/03/19 22:16:53 garbled Exp $ 2 3 .include <bsd.own.mk> 4 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" 5 6 IMAGE= sshramdisk.fs 7 IMAGESIZE= 3572k 8 MAKEFS_FLAGS= -f 15 9 10 WARNS= 1 11 DBG= -Os 12 13 CRUNCHBIN= ramdiskbin 14 LISTS= ${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst 15 MTREECONF= ${.CURDIR}/mtree.conf 16 IMAGEENDIAN= le 17 MAKEDEVTARGETS= ramdisk 18 IMAGEDEPENDS= ${CRUNCHBIN} \ 19 dot.profile master.passwd sshd_config ssh_host_dsa_key \ 20 ${NETBSDSRCDIR}/etc/group \ 21 ${NETBSDSRCDIR}/etc/netconfig ${DISTRIBDIR}/common/protocols \ 22 ${DISTRIBDIR}/common/services 23 24 # Use stubs to eliminate some large stuff from libc 25 HACKSRC= ${DISTRIBDIR}/utils/libhack 26 .include "${HACKSRC}/Makefile.inc" 27 ${CRUNCHBIN}: libhack.o 28 29 USE_PAM := no 30 USE_YP := no 31 USE_SKEY := no 32 USE_KERBEROS := no 33 USE_LDAP := no 34 .export USE_PAM 35 .export USE_YP 36 .export USE_SKEY 37 .export USE_KERBEROS 38 .export USE_LDAP 39 40 .include "${DISTRIBDIR}/common/Makefile.crunch" 41 .include "${DISTRIBDIR}/common/Makefile.dhcpcd" 42 .include "${DISTRIBDIR}/common/Makefile.makedev" 43 .include "${DISTRIBDIR}/common/Makefile.image" 44 45 release: 46 47 .include <bsd.prog.mk> 48