mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
163 B
Makefile
12 lines
163 B
Makefile
ifndef TOUCH
|
|
TOUCH = touch
|
|
endif
|
|
|
|
all: testfile {testfile2}
|
|
test -f testfile
|
|
test -f {testfile2}
|
|
@echo TEST-PASS
|
|
|
|
testfile {testfile2}:
|
|
$(TOUCH) $@
|