Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Nov 2014 17:23:15 +0000 (UTC)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r274801 - user/marcel/libvdsk
Message-ID:  <201411211723.sALHNFIv050174@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marcel
Date: Fri Nov 21 17:23:15 2014
New Revision: 274801
URL: https://svnweb.freebsd.org/changeset/base/274801

Log:
  Make sure to provide defaults for BINDIR, SHLIB_MAJOR and WARNS. These
  come from lib/Makefile.inc and usr.sbin/Makefile.inc in the FreeBSD
  source tree. Things don't quite work the same without them.
  
  While here again: columnize.

Modified:
  user/marcel/libvdsk/Makefile.inc

Modified: user/marcel/libvdsk/Makefile.inc
==============================================================================
--- user/marcel/libvdsk/Makefile.inc	Fri Nov 21 17:08:28 2014	(r274800)
+++ user/marcel/libvdsk/Makefile.inc	Fri Nov 21 17:23:15 2014	(r274801)
@@ -1,5 +1,9 @@
 # $FreeBSD$
 
-CFLAGS+=-I${.CURDIR}/../libvdsk
-LDFLAGS+=-L${.OBJDIR}/../libvdsk
-LIBVDSK?=${.OBJDIR}/../libvdsk/libvdsk.a
+CFLAGS +=	-I${.CURDIR}/../libvdsk
+LDFLAGS +=	-L${.OBJDIR}/../libvdsk
+LIBVDSK ?=	${.OBJDIR}/../libvdsk/libvdsk.a
+
+BINDIR ?=	/usr/sbin
+SHLIB_MAJOR ?=	5
+WARNS ?=	6



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411211723.sALHNFIv050174>