2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-26 11:51:20 +01:00
waf/demos/tex/wscript

19 lines
291 B
Plaintext
Raw Normal View History

2011-09-10 11:13:51 +02:00
#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2005, 2010 (ita)
VERSION='1.0.0'
APPNAME='tex_test'
top = '.'
out = 'build'
def configure(conf):
conf.load('tex')
if not conf.env.PDFLATEX:
conf.fatal('could not find the program pdflatex')
def build(bld):
bld.recurse('src')