home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d1xx
/
d179
/
dmake.lha
/
Dmake
/
mf2.test
< prev
next >
Wrap
Text File
|
1989-02-25
|
432b
|
20 lines
SRCS = *.c
OBJS = ram:*.o
# note, in the line below you must specify $(SRCS) on the right
# hand side of you want %(SRCS) to expand properly. Apart from
# that the specification of $(SRCS) is redundant
all: $(OBJS) $(SRCS)
Echo "ln %(OBJS) -o c:blah"
Echo "sources are: %(SRCS)"
$(OBJS) : $(SRCS)
Echo "cc %(right) -o %(left)"
arc: $(SRCS) c:blah
Echo "Delete ram:x.arc"
Echo "arc a ram:x %(SRCS) c:blah"