9199867df1
This is a modified version of DragonFlyBSD's fastbulk utility, that has been adapted for xbps/xbps-src and contains multiple improvements like configurable logging path, skipping building non working packages (broken/only_for_archs), etc. A manual page will be pushed soon. This is still WIP, it needs more changes to support building a customizable set of packages and other additions.
21 lines
387 B
Makefile
21 lines
387 B
Makefile
-include ../config.mk
|
|
|
|
SUBDIRS = xbps-create
|
|
SUBDIRS += xbps-dgraph
|
|
SUBDIRS += xbps-install
|
|
SUBDIRS += xbps-pkgdb
|
|
SUBDIRS += xbps-query
|
|
SUBDIRS += xbps-reconfigure
|
|
SUBDIRS += xbps-remove
|
|
SUBDIRS += xbps-rindex
|
|
SUBDIRS += xbps-uhelper
|
|
SUBDIRS += xbps-checkvers
|
|
SUBDIRS += xbps-fbulk
|
|
|
|
ifeq (${XBPS_OS},linux)
|
|
SUBDIRS += xbps-uchroot
|
|
SUBDIRS += xbps-uunshare
|
|
endif
|
|
|
|
include ../mk/subdir.mk
|