11 lines
No EOL
462 B
Python
11 lines
No EOL
462 B
Python
Import('env')
|
|
|
|
example = env.Clone()
|
|
example.Append(LIBS="hammer", LIBPATH="../src")
|
|
|
|
dns = example.Program('dns', ['dns.c', 'rr.c', 'dns_common.c'])
|
|
base64 = example.Program('base64', 'base64.c')
|
|
base64_sem1 = example.Program('base64_sem1', 'base64_sem1.c')
|
|
base64_sem2 = example.Program('base64_sem2', 'base64_sem2.c')
|
|
singular = example.Program('explore_singular', 'explore_singular.c')
|
|
env.Alias("examples", [dns, base64, base64_sem1, base64_sem2, singular]) |