home *** CD-ROM | disk | FTP | other *** search
Makefile | 1986-11-30 | 1.1 KB | 66 lines |
- !
- ! MSDOS Make utility
- ! (compile with Microsoft C version 3.0)
- !
-
- CLIB = /usr/msc/lib
- CFLAGS = /AS ;
- CC = msc
- H = make.h
- FILES = #H make.c macro.c token.c parsedir.c file.c osdate.asm
- DOCUMENTATION = readme make.man makefile
-
- xmake.exe : make.obj macro.obj token.obj parsedir.obj file.obj osdate.obj
- link make+macro+token+parsedir+file+osdate,xmake;
-
- make.obj : make.c #H
- #(CC) make #(CFLAGS)
-
- macro.obj : macro.c #H
- #(CC) macro #(CFLAGS)
-
- token.obj : token.c #H
- #(CC) token #(CFLAGS)
-
- parsedir.obj : parsedir.c #H
- #(CC) parsedir #(CFLAGS)
-
- file.obj : file.c
- #(CC) file #(CFLAGS)
-
- osdate.obj : osdate.c
- #(CC) osdate #(CFLAGS)
-
- !
- ! Print files associated with MAKE
- !
- print :
- print make.man #(FILES) makefile
-
-
- !
- ! collect source and documentation files
- !
- collect :
- collect -o make.col @make.lis
-
-
- !
- ! copy to distribution disk (on A:)
- !
- distribution :
- copy readme a:
- copy make.man a:
- copy makefile a:
- copy make.bat a:
- copy make.c a:
- copy macro.c a:
- copy token.c a:
- copy parsedir.c a:
- copy file.c a:
- copy osdate.asm a:
- copy cmake.bat a:
- copy make.lis a:
- copy xmake.exe a:
-