home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 28 / amigaformatcd28.iso / -seriously_amiga- / misc / posbb / src / compiling < prev    next >
Text File  |  1998-05-09  |  867b  |  27 lines

  1. To compile posbb just type
  2. make <target>
  3.  
  4. target can be "generic","amigaos","all".
  5. You can change some defaults adding to your command line
  6. CC = <compiler> ,default gcc
  7. CCFLAGS = <compiler flags> ,default -O3
  8. LDFLAGS = <linker flags> ,default -noixemul -lm -s
  9. OUTNAME = <name of the executable> ,default posbb
  10.  
  11. The last paarmeter is important: you should call the executable something like
  12. <cpu>-<os>-posbb.
  13. For example:
  14. m68k-amigaos-posbb
  15. i386-win32-posbb
  16. m68k-netbsd-posbb
  17. ppc-amigaos-posbb
  18. i386-linux-posbb
  19. ...
  20.  
  21. So it will be simplier for the users to understand for what system the executable is.
  22. The Amiga version has a file,compiler.h,which contains some compiler specific stuff.
  23. If you have to do some changes to compile,send me the changes so I'll add them to the
  24. distribution and al future versions of posbb will become 100% compatible with your compiler.
  25.  
  26.  
  27.