home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib25.zoo / gmakefil.16 < prev    next >
Text File  |  1990-04-08  |  655b  |  34 lines

  1. # Makefile for the GCC TOS library (16 bit int default with debugging)
  2.  
  3. CC= d:\gnu\bin\gcc.ttp
  4. CPP=d:\gnu\bin\gcc-cpp.ttp
  5. AR= d:\gnu\bin\gcc-ar.ttp
  6. AS= $(CC)
  7. LIB = d:\gnu\lib
  8.  
  9. COPTS= -O -gg -D__NO_INLINE__ $(XFLAGS)
  10.  
  11. # normal CFLAGS
  12. CFLAGS= -mshort $(COPTS)
  13.  
  14. # CFLAGS sans -fomit-frame-pointer
  15. CFFLAGS = $(CFLAGS)
  16.  
  17. # cflags for stuff that needs to be compiled with 32 bit ints
  18. CLFLAGS= $(COPTS) -DSHORTLIB
  19.  
  20. # flags to $(CC) when it runs the assembler only
  21. ASFLAGS= -c
  22.  
  23. # pre-processor flags
  24. PPFLAGS= -P -D__MSHORT__ -D__NO_INLINE__
  25.  
  26. # library targets
  27. CLIB= gnugdb16.olb
  28. IIOLIB= iiogdb16.olb
  29.  
  30. # the stuff to make
  31. ALL= $(CLIB) crt0.o gcrt0.o
  32.  
  33. include mincl
  34.