15 lines
393 B
Plaintext
15 lines
393 B
Plaintext
#
|
|
# Test to make sure VPATH is being supported properly
|
|
#
|
|
VPATH = /usr/include:/tmp:/sprite/att/lib/include
|
|
#include "../lib/mk/shx.mk"
|
|
.IGNORE: # make sure sh doesn't abort on failed if's
|
|
a ! signal.h
|
|
if test "(" "$(.ALLSRC)" != "/usr/include/signal.h" ")" -a \
|
|
"(" "$(.ALLSRC)" != "/sprite/att/lib/include/signal.h" ")" ; then
|
|
@echo Check main
|
|
@exit 1
|
|
else
|
|
@exit 0
|
|
fi
|