rule all:
    output:
        "foo.txt"
    run:
        with open('foo.txt', 'w') as f: pass
