From 8cc2a71235c7a88a96e24c47d4466f2c372e6c33 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Sun, 17 Nov 2024 14:19:28 +0100 Subject: [PATCH] note python makefile --- slides/makefiles/examples/fort_2 | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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 > $@