MULTI 603 B

12345678910111213141516171819202122
  1. Multi-binary compilation
  2. ========================
  3. To compile for systems without much space (floppy distributions etc), you
  4. can create a single binary. This will save disk space by avoiding repeated
  5. code between the various parts.
  6. If you are familiar with "busybox", it's the same principle.
  7. To compile the multi-binary, first "make clean" (if you've compiled
  8. previously), then
  9. make PROGRAMS="programs you want here" MULTI=1
  10. To use the binary, symlink it from the desired executable:
  11. ln -s dropbearmulti dropbear
  12. ln -s dropbearmulti dbclient
  13. etc
  14. then execute as normal:
  15. ./dropbear <options here>