blob: 1266db7d1b1a7a96e1cab1ffc614502aad1f1805 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# -*- Mode: Makefile -*-
shellresult := $(shell pathtest)
ifneq (2f7cdd0b-7277-48c1-beaf-56cb0dbacb24,$(filter $(shellresult),2f7cdd0b-7277-48c1-beaf-56cb0dbacb24))
$(error pathtest not found in submake shell function)
endif
all:
@pathtest
@pathtest | grep -q 2f7cdd0b-7277-48c1-beaf-56cb0dbacb24
@echo TEST-PASS
|