diff --git a/slides/makefiles/examples/fort_2 b/slides/makefiles/examples/fort_2 index e9202a1..e35750f 100644 --- a/slides/makefiles/examples/fort_2 +++ b/slides/makefiles/examples/fort_2 @@ -2,8 +2,14 @@ forts/big_fort.txt: forts/short.txt forts/long.txt cat $^ > $@ -forts/: - mkdir $@ +README.md: + echo "For an example makefile for python" > $@ + echo "check out the nd6 dice-roller at" >> $@ + echo "ssh -p 2222 soft.dmz.rs -t nd6" >> $@ + + +forts/: README.md + mkdir -p $@ forts/short.txt: forts/ fortune -s > $@