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

  1. # Makefile for the GCC TOS library (16 bit int default)
  2.  
  3. CC= c:\gnu\bin\gcc.ttp
  4. CPP=c:\gnu\bin\gcc-cpp.ttp
  5. AR= c:\gnu\bin\gcc-ar.ttp
  6. AS= $(CC)
  7. LIB = c:\gnu\lib
  8.  
  9. COPTS= -O -Wall -fomit-frame-pointer -fstrength-reduce -DNDEBUG $(XFLAGS)
  10.  
  11. # normal CFLAGS
  12. CFLAGS= -mshort $(COPTS)
  13.  
  14. # CFLAGS sans -fomit-frame-pointer
  15. CFFLAGS = -mshort -O -Wall -DNDEBUG
  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__ -DNDEBUG
  25.  
  26. # library targets
  27. CLIB= gnu16.olb
  28. IIOLIB= iio16.olb
  29. CRT0= crt0.o
  30. GCRT0= gcrt0.o
  31.  
  32. # the stuff to make
  33. ALL= $(CLIB) $(IIOLIB) $(CRT0) $(GCRT0)
  34.  
  35. include mincl
  36.