1
0
Files
irix-657m-src/eoe/cmd/pmake/tests/dynamic.test
2022-09-29 17:59:04 +03:00

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"