home *** CD-ROM | disk | FTP | other *** search
- ### this is the makefile for make.exe itself
-
- OBJS=make.o mstring.o path.o
- ARCS=make.doc make.exe make.c make.h makefile mstring.c mstring.h path.c make.ini touch.c
- CFLAGS=/DNDEBUG
-
- exe : make.exe touch.exe
- all : install
- install : $BIN\make.exe $BIN\touch.exe $BIN\make.ini
- arc : make.arc
- clean : install
- del *.o
- del make.arc
- chkdsk :
- # use this to see how much memory remains when make is resident
- chkdsk
-
- ### lines below this one are not for the user ###
-
- mstring.o : mstring.h
- make.o : make.h mstring.h
- $BIN\make.ini : make.ini
- copy make.ini $BIN
- $BIN\make.exe : make.exe
- copy make.exe $BIN
- $BIN\touch.exe : touch.exe
- copy touch.exe $BIN
- make.arc : $ARCS
- del make.arc
- arc u make $ARCS
- make.exe : $OBJS
- # the CPARMAXALLOC option gives spawned programs more space !!
- # with it and the msc v 3.00 compiler, MAKE uses only 42K
- link $OBJS /CPARMAXALLOC:1 /STACK:0x4000;
- touch.exe : touch.o
- link touch.o $LIB\ssetargv;
-
-