Skip to content

Instantly share code, notes, and snippets.

@mkevac
Created May 26, 2011 22:28
Show Gist options
  • Save mkevac/994247 to your computer and use it in GitHub Desktop.
Save mkevac/994247 to your computer and use it in GitHub Desktop.
#! /usr/bin/env python
# encoding: utf-8
import os
from Configure import conf
import Options
APPNAME='args'
VERSION='1.0.0'
top = '.'
out = 'build'
def options(opt):
pass
def configure(conf):
pass
def build(bld):
a = bld(
rule = 'apxs -Wc,\'${CFLAGS}\' ${CPPFLAGS} -c ${SRC}',
source = 'src/mod_args.c',
use = 'LIBJSON',
)
import pprint
pprint.pprint(dir(a))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment