Edit

IABSD.fr/src/usr.sbin/vmctl/Makefile

Branch :

  • Show log

    Commit

  • Author : pd
    Date : 2019-01-18 01:24:07
    Hash : bbbb23fd
    Message : disable vmd/vmctl for i386 Next commit will delete vmm(4) for i386. Reasons to delete i386 vmm: - Been broken for a while, almost no one complained. - Had been falling out of sync from amd64 while it worked. - If your machine has vmx, you most probably can run amd64, so why not run that? ok mlarkin@ deraadt@

  • usr.sbin/vmctl/Makefile
  • #	$OpenBSD: Makefile,v 1.6 2019/01/18 01:24:07 pd Exp $
    
    .if ${MACHINE} == "amd64"
    
    .PATH:	${.CURDIR}/../vmd
    
    PROG=	vmctl
    SRCS=	vmctl.c main.c atomicio.c
    SRCS+=	vioqcow2.c vioraw.c log.c
    CFLAGS+= -Wall
    CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
    CFLAGS+= -Wmissing-declarations
    CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
    CFLAGS+= -Wsign-compare
    CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../vmd
    LDADD+=	-lutil -lpthread
    DPADD+= ${LIBUTIL} ${LIBPTHREAD}
    PATH+=../vmd
    
    .else
    
    NOPROG= yes
    
    .endif
    
    MAN= vmctl.8
    
    .include <bsd.prog.mk>