home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware 1 2 the Maxx
/
sw_1.zip
/
sw_1
/
PROGRAM
/
DJDEV106.ZIP
/
BIN
/
MAKE.INI
< prev
next >
Wrap
Text File
|
1991-07-20
|
836b
|
53 lines
# This is a sample `make.ini' file for NDMAKE. You will probably want
# to customize it for your system.
# If .NOIG is used, it *must* be the first directive in this file.
.NOIG
# The order to search for rules and files is specified by .SUFFIXES
.SUFFIXES : .o .obj .S .asm .c .cc .y .l
# The directory NDMAKE uses for temporary file
MAKE_TMP= $(TMP)
# Macros for compilers and assemblers.
AS = as
AFLAGS = /mx /zi
CC = gcc
CFLAGS = -g
LEX = flex
LFLAGS =
YACC = bison
YFLAGS =
MAKE = make
# Other useful macros
BIN =
ECHO = >stdout
LIBS =
MODEL = S
SETARGV = $(LIB)\$(MODEL)SETARGV
LINKFLAGS =
.c.o:
gcc $(CFLAGS) -c $<
.cc.o:
gcc $(CFLAGS) -c $<
.S.o:
gcc $(CFLAGS) -c $<
.s.o:
gcc $(CFLAGS) -c $<
.c.obj:
tcc $(CFLAGS) -c $<
.asm.obj:
tasm $(AFLAGS) $<