home *** CD-ROM | disk | FTP | other *** search
- ##
- ## Make file for TERMITE.EXE
- ##
-
- CARGS = -Gsw -Oas -W2 -Zpe -c
- LARGS = /NOD
-
- ##
-
- all: termite.exe
-
- ##
-
- termite.obj: termite.c termite.h fileopen.h
- cl $(CARGS) termite.c
-
- termtool.obj: termtool.c termite.h
- cl $(CARGS) termtool.c
-
- termite.res: termite.rc termite.h fileopen.h
- rc -r termite.rc
-
- ##
-
- fileopen.obj: fileopen.c fileopen.h
- cl $(CARGS) fileopen.c
-
- ##
-
- termite.exe:: termite.obj termtool.obj fileopen.obj termite.def
- link $(LARGS) termite termtool fileopen, , , slibcew libw, termite.def
- rc termite.res
-
- termite.exe:: termite.res
- rc termite.res
-
-