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