home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
gnu
/
gemlib27.lzh
/
GEMLIB27
/
MAKEFILE.16
< prev
next >
Wrap
Text File
|
1993-07-30
|
755b
|
35 lines
# Makefile for the GCC Gem interface library (16 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) -mshort
# 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= $(COPTS) -DSHORTLIB -fomit-frame-pointer
# flags to $(CC) when it runs the assembler only
ASFLAGS= -c
# pre-processor flags
PPFLAGS= -P -D__MSHORT__ -DNDEBUG
# library targets
GEMLIB= gem16.olb
# the stuff to make
ALL= $(GEMLIB)
include mincl