home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0636.ZIP / CCE_0636 / GEMLIB / GMLIBS30.ZOO / makefile.32 < prev    next >
Makefile  |  1993-05-21  |  700b  |  35 lines

  1. # Makefile for the GCC Gem interface library (32 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= -O2 -I. -fstrength-reduce -DNDEBUG $(XFLAGS)
  12.  
  13. # Base options CC; includes int size but not omit-frame-pointer
  14. CFFLAGS = $(COPTS)
  15.  
  16. # normal CFLAGS including int size and omit-frame-pointer
  17. CFLAGS= $(CFFLAGS) -fomit-frame-pointer
  18.  
  19. # cflags for stuff that needs to be compiled with 32 bit ints
  20. CLFLAGS= $(CFLAGS)
  21.  
  22. # flags to $(CC) when it runs the assembler only
  23. ASFLAGS= -c
  24.  
  25. # pre-processor flags
  26. PPFLAGS= -P -DNDEBUG
  27.  
  28. # library targets
  29. GEMLIB= gem.olb
  30.  
  31. # the stuff to make
  32. ALL= $(GEMLIB)
  33.  
  34. include mincl
  35.