mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-03 20:31:40 +00:00
10 lines
120 B
Makefile
10 lines
120 B
Makefile
.PHONY: all
|
|
all: 10K.1.html
|
|
|
|
10K.1.html:
|
|
dd if=/dev/urandom of=$@ bs=1000 count=10
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) *.html
|