home *** CD-ROM | disk | FTP | other *** search
- # MSC600 version of Makefile for Fortran program checker
- # (Copy this to makefile prior to running make.)
- #
- CC=cl
-
- # declare smaller data areas, and use the huge model.
- CFLAGS= -DSMALL_MACHINE /AL /c
-
- OBJS= forchek.obj forlex.obj fortran.obj prsymtab.obj symtab.obj symtab2.obj
-
- # default rules
-
- %.obj : %.c
- $(CC) ${CFLAGS} $< $@
-
- forchek.exe: $(OBJS)
- link @obj.bat
-
- forchek.o: forchek.h
-
- forlex.o: forchek.h tokdefs.h symtab.h
-
- fortran.o: forchek.h symtab.h fortran.c
-
- prsymtab.o: forchek.h symtab.h
-
- symtab.o: forchek.h symtab.h intrins.h
-
- symtab2.o: forchek.h symtab.h tokdefs.h
-