16 lines
324 B
Plaintext
16 lines
324 B
Plaintext
#
|
|
# Makefile to test expansion of single-character variables in .PATH directives
|
|
#
|
|
PWD=.
|
|
P=$(PWD)/../src
|
|
.PATH.h: $(P)
|
|
|
|
#include "../lib/mk/shx.mk"
|
|
.IGNORE: # keep sh from aborting on failed ifs
|
|
make.h ::
|
|
: $(.TARGET)
|
|
if test "$(PWD)/../src" != "$P" ; then
|
|
@echo Check first part of Var_Parse
|
|
fi
|
|
@echo '(P)' = $(P)
|