mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 18:33:07 +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" > $@
|