#!/usr/bin/python
# -*- coding: utf-8 -*-

def build(bld):
    obj = bld.create_obj('cc', 'program')
    obj.source = '''
    commands.c
    editorwin.c
    main.c
    mainwin.c
    registwin.c
    user_commands.c
    '''

    obj.includes = '.'
    obj.uselib = 'GTK GLIB X11 XEXT'
    obj.target = 'breeze'
