mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-26 20:01:13 +01:00
19 lines
291 B
Python
19 lines
291 B
Python
#! /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')
|
|
|