mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 21:03:08 +09:00
10 lines
164 B
Makefile
10 lines
164 B
Makefile
# make should make makefiles that it has rules for if they are
|
|
# included
|
|
include test.mk
|
|
|
|
all:
|
|
test "$(X)" = "1"
|
|
@echo "TEST-PASS"
|
|
|
|
test.mk:
|
|
@echo "X = 1" > $@
|