/build
https://code.google.com/p/latex-makefile/ · #! · 16 lines · 11 code · 5 blank · 0 comment · 0 complexity · 9928b9baacd080c06170219ddab3f12e MD5 · raw file
- #!/usr/bin/env python
- from __future__ import print_function, division
- import sys
- import util.ensure_version
- from util import template
- def main():
- ns = template.Template()
- with open("Makefile", "wb") as f:
- print(ns.expand_file("Makefile.in"), file=f)
- if __name__ == '__main__':
- main()