home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gemlib27.lzh / GEMLIB27 / GMAKEFIL.16 < prev    next >
Text File  |  1993-07-30  |  706b  |  35 lines

  1. # Makefile for the GCC Gem interface library (16 bit int default)
  2.  
  3. CC=  gcc
  4. CPP= gcc-cpp
  5. AR=  gcc-ar
  6. AS= $(CC)
  7.  
  8. LIB = d:\gnu\lib
  9.  
  10. # common subset of options; no int size or omit-frame-pointer:
  11. COPTS= -O -g -I. -DNDEBUG $(XFLAGS)
  12.  
  13. # Base options CC; includes int size but not omit-frame-pointer
  14. CFFLAGS = $(COPTS) -mshort
  15.  
  16. # normal CFLAGS including int size and omit-frame-pointer
  17. CFLAGS= $(CFFLAGS)
  18.  
  19. # cflags for stuff that needs to be compiled with 32 bit ints
  20. CLFLAGS= $(COPTS) -DSHORTLIB 
  21.  
  22. # flags to $(CC) when it runs the assembler only
  23. ASFLAGS= -c
  24.  
  25. # pre-processor flags
  26. PPFLAGS= -P -D__MSHORT__ -D__NO_INLINE__
  27.  
  28. # library targets
  29. GEMLIB= gem16.olb
  30.  
  31. # the stuff to make
  32. ALL= $(GEMLIB)
  33.  
  34. include mincl
  35.