mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-08 22:32:05 +00:00
11 lines
236 B
Makefile
11 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
|