10 lines
225 B
Plaintext
10 lines
225 B
Plaintext
#
|
|
# This is a makefile to exercise the dyanmic-dependency facility of PMake
|
|
#
|
|
.PATH.c : ../src
|
|
all : str.o job.o
|
|
str.o ! $*.c
|
|
test "$(.ALLSRC)" = "../src/str.c"
|
|
job.o ! $(.TARGET:R).c
|
|
test "$(.ALLSRC)" = "../src/job.c"
|