home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-07-30 | 699 b | 35 lines |
- # Makefile for the GCC Gem interface library (32 bit int default)
-
- CC= gcc
- CPP= gcc-cpp
- AR= gcc-ar
- AS= $(CC)
-
- LIB = d:\gnu\lib
-
- # common subset of options; no int size or omit-frame-pointer:
- COPTS= -O -I. -fstrength-reduce -DNDEBUG $(XFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS)
-
- # normal CFLAGS including int size and omit-frame-pointer
- CFLAGS= $(CFFLAGS) -fomit-frame-pointer
-
- # cflags for stuff that needs to be compiled with 32 bit ints
- CLFLAGS= $(CFLAGS)
-
- # flags to $(CC) when it runs the assembler only
- ASFLAGS= -c
-
- # pre-processor flags
- PPFLAGS= -P -DNDEBUG
-
- # library targets
- GEMLIB= gem.olb
-
- # the stuff to make
- ALL= $(GEMLIB)
-
- include mincl
-