home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
mint
/
mntlib16.lzh
/
MNTLIB16
/
MAKEFILE.32
< prev
next >
Wrap
Text File
|
1993-08-03
|
746b
|
36 lines
# Makefile for the GCC TOS library (32 bit int default)
CC= d:\gnu\bin\gcc.ttp
CPP=d:\gnu\bin\gcc-cpp.ttp
AR= d:\gnu\bin\gcc-ar.ttp
AS= $(CC)
LIB = d:\gnu\lib
COPTS= -O -Wall -fomit-frame-pointer -fcombine-regs -fstrength-reduce -DNDEBUG $(XFLAGS)
# normal CFLAGS
CFLAGS= $(COPTS)
# CFLAGS sans -fomit-frame-pointer
CFFLAGS = -O -Wall -DNDEBUG
# cflags for stuff that needs to be compiled with 32 bit ints
# (this def is needed for the common include file)
CLFLAGS= $(CFLAGS)
# flags to $(CC) when it runs the assembler only
ASFLAGS= -c
# pre-processor flags
PPFLAGS= -P -DNDEBUG
# library targets
CLIB= gnu.olb
IIOLIB= iio.olb
# the stuff to make
ALL= $(CLIB) $(IIOLIB) crt0.o gcrt0.o
include mincl