home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / mint / mntlib24 / makefile.b32 < prev    next >
Encoding:
Makefile  |  1993-08-03  |  757 b   |  38 lines

  1. # Makefile for the GCC TOS library (32 bit int default)
  2.  
  3. CC= gcc
  4. CPP=gcc-cpp
  5. AR= gcc-ar
  6. AS= $(CC)
  7. LIB = c:\gnu\lib
  8.  
  9.  
  10. COPTS= -mbaserel -O -Wall -fomit-frame-pointer -fstrength-reduce -DNDEBUG $(XFLAGS)
  11.  
  12. # normal CFLAGS
  13. CFLAGS= $(COPTS)
  14.  
  15. # CFLAGS sans -fomit-frame-pointer
  16. CFFLAGS = -mbaserel -O -Wall -DNDEBUG
  17.  
  18. # cflags for stuff that needs to be compiled with 32 bit ints
  19. # (this def is needed for the common include file)
  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 -D__MBASE__=a4 -DNDEBUG
  27.  
  28. # library targets
  29. CLIB= bgnu.olb
  30. IIOLIB= biio.olb
  31. CRT0= bcrt0.o
  32. GCRT0= bgcrt0.o
  33.  
  34. # the stuff to make
  35. ALL= $(CLIB) $(IIOLIB) $(CRT0) $(GCRT0)
  36.  
  37. include mincl
  38.