1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# first entry is module name, next entries are dependencies or -l<libname> library includes
# put !<platform-name>,<platform-name> after a module / library to exclude it from a particular platform
# put !+<platform-name>,... to include it only on those platforms
# -l libaries must be in the order they should appear on the command line.
# Note that order is important on platforms which do not have shared libraries.
# QDBM is currently built from a copy distributed in-tree, which we need to fix.
qdbm
# Generic support code and modules
lib/win32
lib/common lib/win32
lib/raidfile lib/common
lib/crypto lib/common
lib/server qdbm lib/crypto
lib/compress lib/common
lib/intercept lib/common
test/common qdbm lib/common
test/crypto qdbm lib/crypto
test/compress qdbm lib/compress
test/raidfile qdbm lib/raidfile lib/intercept
test/basicserver qdbm lib/server
# IF_DISTRIBUTION(boxbackup)
# Backup system
lib/backupstore lib/server lib/raidfile lib/crypto lib/compress lib/httpserver
lib/backupclient lib/backupstore
lib/bbackupd lib/backupclient qdbm
lib/bbackupquery lib/backupclient
lib/bbstored lib/backupstore
bin/bbackupobjdump lib/backupclient
bin/bbstored lib/bbstored
bin/bbstoreaccounts lib/backupclient
bin/bbackupd lib/bbackupd
bin/bbackupquery lib/bbackupquery
bin/bbackupctl lib/backupclient qdbm lib/bbackupd
test/backupstore bin/bbstored bin/bbstoreaccounts lib/backupclient lib/raidfile
test/backupstorefix bin/bbstored bin/bbstoreaccounts lib/backupclient bin/bbackupquery bin/bbackupd bin/bbackupctl
test/backupstorepatch bin/bbstored bin/bbstoreaccounts lib/backupclient
test/backupdiff lib/backupclient
test/bbackupd bin/bbackupd bin/bbstored bin/bbstoreaccounts bin/bbackupquery bin/bbackupctl lib/bbackupquery lib/bbackupd lib/bbstored lib/server lib/intercept
bin/s3simulator lib/httpserver
test/s3store lib/backupclient lib/httpserver bin/s3simulator bin/bbstoreaccounts
# HTTP server system
lib/httpserver lib/server
test/httpserver lib/httpserver
# END_IF_DISTRIBUTION
|