[Glibc-bsd-commits] r4232 - trunk/freebsd-libs/debian
Robert Millan
rmh at alioth.debian.org
Sun Apr 22 09:30:08 UTC 2012
Author: rmh
Date: 2012-04-22 09:30:08 +0000 (Sun, 22 Apr 2012)
New Revision: 4232
Modified:
trunk/freebsd-libs/debian/rules
Log:
Factor build target list
Modified: trunk/freebsd-libs/debian/rules
===================================================================
--- trunk/freebsd-libs/debian/rules 2012-04-22 09:14:01 UTC (rev 4231)
+++ trunk/freebsd-libs/debian/rules 2012-04-22 09:30:08 UTC (rev 4232)
@@ -67,12 +67,26 @@
tar --numeric-owner --owner 0 --group 0 -czf ../$(TARNAME) $(ORIGDIR)
rm -rf $(ORIGDIR)
+BUILD_TARGETS = build-sbuf
+
ifeq ($(kernel), kfreebsd)
-build: build-cam build-geom build-sbuf build-ipx build-kiconv build-kvm build-usbhid build-usb build-devstat build-memstat build-netgraph build-jail build-alias
-else
-build: build-sbuf
+BUILD_TARGETS += \
+ build-cam \
+ build-geom \
+ build-ipx \
+ build-kiconv \
+ build-kvm \
+ build-usbhid \
+ build-usb \
+ build-devstat \
+ build-memstat \
+ build-netgraph \
+ build-jail \
+ build-alias
endif
+build: $(BUILD_TARGETS)
+
build-cam: build-cam-stamp
build-cam-stamp: build-sbuf
$(PMAKE) -C $(CURDIR)/lib/libcam SHLIBDIR=./
More information about the Glibc-bsd-commits
mailing list