mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 22:08:40 +09:00
7 lines
146 B
Makefile
7 lines
146 B
Makefile
|
|
all: testfile
|
||
|
|
test "$(shell cat $<)" = "Hello world"
|
||
|
|
test "$(shell printf "\n")" = ""
|
||
|
|
@echo TEST-PASS
|
||
|
|
|
||
|
|
testfile:
|
||
|
|
printf "Hello\nworld\n" > $@
|