home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_USR08B.LHA / gerlib / startup / makefile < prev    next >
Encoding:
Makefile  |  1993-12-12  |  311 b   |  23 lines

  1. # make startup-files
  2.  
  3. all: rcrt0.o bcrt0.o crt0.o
  4.  
  5.  
  6. # baserelative resident startup-code
  7.  
  8. rcrt0.o: rcrt0.s
  9.     gcc -O3 -resident rcrt0.s -c -msmall-code
  10.  
  11.  
  12. # baserelative startup code
  13.  
  14. bcrt0.o: bcrt0.s
  15.     gcc -O3 -fbaserel bcrt0.s  -c -msmall-code
  16.  
  17.  
  18. # normal (=large) startup code
  19.  
  20. crt0.o: crt0.s
  21.     gcc -O3 crt0.s -c
  22.  
  23.