home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programming
/
powerprogramming1994.iso
/
progtool
/
borland
/
jnfb88.arc
/
USETC.ARC
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1987-05-17
|
311b
|
18 lines
# makefile: program builder for CONCAT
# rules
.c.obj:
tcc -c -m$(MDL) $<
# symbolic constants
MDL = s
LIB = c:\tc\lib
SRCS = concat.c filecopy.c
OBJS = concat.obj filecopy.obj
# instructions
concat.exe: $(OBJS)
tlink $(LIB)\c0$(MDL) $(OBJS), $*, , $(LIB)\c$(MDL)
$(OBJS): $(SRCS)