mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 21:03:08 +09:00
10 lines
236 B
Makefile
10 lines
236 B
Makefile
# avoid infinite loops by not remaking makefiles with
|
|
# double-colon no-dependency rules
|
|
# http://www.gnu.org/software/make/manual/make.html#Remaking-Makefiles
|
|
-include notfound.mk
|
|
|
|
all:
|
|
@echo TEST-PASS
|
|
|
|
notfound.mk::
|
|
@echo TEST-FAIL
|