github.com/informationsea/shellflow@v0.1.3/examples/build.sf (about) 1 #!/usr/bin/env shellflow 2 3 #% compiler = "gcc" 4 5 {{compiler}} -c ((hello.c)) # [[hello.o]] ((helloprint.h)) 6 {{compiler}} -c ((helloprint.c)) # [[helloprint.o]] ((helloprint.h)) 7 {{compiler}} -o [[hello]] ((helloprint.o)) ((hello.o)) 8