home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-04-26 | 583 b | 42 lines |
- CC=bcc
- LINK=tlink
- CC_OPTS=-c -ml -w -d -O -A -P-c
- LINK_OPTS=/c /x
-
- ## Libraries:
- OBJS=c0l
- LIBS=cl
-
- all: lingua.exe lingdemo.exe
-
- lingua.exe: lingua.obj lingua.h
- $(LINK) $(LINK_OPTS) @&&!
- $(OBJS)+
- lingua.obj
- $*, ,$(LIBS)
- !
-
- lingdemo.exe: lingdemo.obj ui_text.obj
- $(LINK) $(LINK_OPTS) @&&!
- $(OBJS)+
- lingdemo.obj+
- ui_text.obj
- $*, ,$(LIBS)
- !
-
- ui_text.h: english.txt
- lingua english
- lingua francais
- lingua deutsch
- lingua nl
-
- lingdemo.c: ui_text.h
- lingua english
- lingua francais
- lingua deutsch
- lingua nl
-
- .c.obj:
- $(CC) $(CC_OPTS) {$< }
-