forked from mirror/waf
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
416 B
Python
27 lines
416 B
Python
#! /usr/bin/env python
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def options(opt):
|
|
opt.load('compiler_c')
|
|
opt.load('compiler_fc')
|
|
|
|
def configure(conf):
|
|
conf.load('compiler_c')
|
|
conf.load('compiler_fc')
|
|
|
|
def build(bld):
|
|
|
|
bld(
|
|
features = 'fc fcshlib',
|
|
source = 'parent.f90 container.f90 helper.f90',
|
|
target = 'fudge',
|
|
)
|
|
bld(
|
|
features = 'fc fcprogram',
|
|
source = 'submain.f90',
|
|
use = 'fudge',
|
|
target = 'submain',
|
|
)
|