mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
11 lines
174 B
Makefile
11 lines
174 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" > $@
|