home *** CD-ROM | disk | FTP | other *** search
Makefile | 1989-09-09 | 825 b | 39 lines |
- #
- # HELP - Ver. 1.0
- #
- # by R. Stolfa
- #
- # Modification History
- # 08/26/87 Created
- # 08/31/87 Added initialize and catch functions
- # 09/02/87 Added all .h dependencies
- # 07/13/88 Packaged to ship out of OSU
- # Added insert to fix problem with uniqueness
- #
-
- OFILES =\
- main.obj append.obj catch.obj format_h.obj free_lis.obj help.obj insert.obj \
- initiali.obj input_ch.obj pchar.obj present.obj scan_top.obj
-
- help.exe: $(OFILES)
- tlink /m /s /v /l @link.otc
-
- CFLAGS = -c -f -ml -M -y -v -I\tc\include -DMSDOS -DPC
- CC = tcc
-
- .c.obj:
- tcc $(CFLAGS) $*
-
- main.obj: main.c
- append.obj: append.c
- catch.obj: catch.c
- format_h.obj: format_h.c
- free_lis.obj: free_lis.c
- help.obj: help.c
- insert.obj: insert.c
- initiali.obj: initiali.c
- input_ch.obj: input_ch.c
- pchar.obj: pchar.c
- present.obj: present.c
- scan_top.obj: scan_top.c
-