just/justfile

49 lines
966 B
Makefile
Raw Normal View History

2016-09-28 05:49:17 +00:00
test:
cargo test --lib
cargo run -- quine clean > /dev/null 2> /dev/null
2016-09-28 05:49:17 +00:00
2016-10-09 00:55:17 +00:00
publish:
git push github master
2016-10-09 00:55:17 +00:00
cargo publish
2016-10-04 06:55:55 +00:00
# make a quine, compile it, and verify it
quine: create
2016-09-28 05:49:17 +00:00
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!'
2016-10-04 06:55:55 +00:00
# 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
2016-09-28 05:49:17 +00:00
# clean up
clean:
rm -r tmp
2016-10-08 00:56:39 +00:00
polyglot: python js perl sh ruby
2016-10-08 00:56:39 +00:00
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!"