home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
misc
/
lingua12
/
makefile
< prev
next >
Wrap
Makefile
|
1993-04-26
|
583b
|
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) {$< }