svn commit: r274801 - user/marcel/libvdsk

Marcel Moolenaar marcel at FreeBSD.org
Fri Nov 21 17:23:16 UTC 2014


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


More information about the svn-src-user mailing list