e5efa3f7d5
It doesn't seem particularly valuable for dependencies to execute in any order, so make Recipe.dependencies a vec so they execute in order.
49 lines
966 B
Makefile
49 lines
966 B
Makefile
test:
|
|
cargo test --lib
|
|
cargo run -- quine clean > /dev/null 2> /dev/null
|
|
|
|
publish:
|
|
git push github master
|
|
cargo publish
|
|
|
|
# make a quine, compile it, and verify it
|
|
quine: create
|
|
cc tmp/gen0.c -o tmp/gen0
|
|
./tmp/gen0 > tmp/gen1.c
|
|
cc tmp/gen1.c -o tmp/gen1
|
|
./tmp/gen1 > tmp/gen2.c
|
|
diff tmp/gen1.c tmp/gen2.c
|
|
@echo 'It was a quine!'
|
|
|
|
# create our quine
|
|
create:
|
|
mkdir -p tmp
|
|
echo 'int printf(const char*, ...); int main() { char *s = "int printf(const char*, ...); int main() { char *s = %c%s%c; printf(s, 34, s, 34); return 0; }"; printf(s, 34, s, 34); return 0; }' > tmp/gen0.c
|
|
|
|
# clean up
|
|
clean:
|
|
rm -r tmp
|
|
|
|
polyglot: python js perl sh ruby
|
|
|
|
python:
|
|
#!/usr/bin/env python3
|
|
print('Hello from python!')
|
|
|
|
js:
|
|
#!/usr/bin/env node
|
|
console.log('Greetings from JavaScript!')
|
|
|
|
perl:
|
|
#!/usr/bin/env perl
|
|
print "Larry Wall says Hi!\n";
|
|
|
|
sh:
|
|
#!/usr/bin/env sh
|
|
hello='Yo'
|
|
echo "$hello from a shell script!"
|
|
|
|
ruby:
|
|
#!/usr/bin/env ruby
|
|
puts "Hello from ruby!"
|