home *** CD-ROM | disk | FTP | other *** search
- # Turbo C version of Makefile for Fortran program checker
- # (Copy this to makefile prior to running make.)
- # makefile produced with help from: Gary Bastin gbastin@x102c.ess.harris.com
- CC=tcc
-
- # declare smaller data areas, and use the huge model.
- CFLAGS= -DSMALL_MACHINE -O -mh
-
- OBJS= forchek.obj forlex.obj fortran.obj prsymtab.obj symtab.obj symtab2.obj
-
- forchek: $(OBJS)
- `$(CC) -eforchek $(CFLAGS) $(OBJS)
-
-
- forchek.obj: forchek.h
-
- forlex.obj: forchek.h tokdefs.h symtab.h
-
- fortran.obj: forchek.h symtab.h fortran.c
-
- prsymtab.obj: forchek.h symtab.h
-
- symtab.obj: forchek.h symtab.h intrins.h
-
- symtab2.obj: forchek.h symtab.h tokdefs.h
-
-