#! /usr/bin/env python

## The guru says:
## fewer scripts -> less work for maintaining the app

Import( 'env' )

############################
## Sources to process
############################
env.subdirs('src')

############################
## Process the documentation
############################

## Use docfolder for each documentation directory
## The parameters of docfolder are: documentation dir, language code, app name
env.docfolder('doc/en/', 'en', 'autostart')
#env.docfolder('doc/fr/', 'fr', 'bksys/')

############################
## Process the translations
############################

## They are usually located in the po/ directory
env.KDElang('po/', 'autostart')

