File: SConscript

package info (click to toggle)
king-probe 02.21-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 864 kB
  • sloc: ansic: 11,980; sh: 54; makefile: 40; python: 18
file content (27 lines) | stat: -rw-r--r-- 572 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import libtbx.load_env

Import("env_base", "env_etc")

env = env_base.Clone(
  LIBS=env_etc.libm)
if (libtbx.manual_date_stamp < 20090819):
  # XXX backward compatibility 2009-08-19
  env.Replace(CCFLAGS=env_etc.ccflags_base)
if (env_etc.compiler != "win32_cl"):
  env.Replace(LINK=env_base["CC"])

exe = env.Program(
  target=["#probe/exe/probe"],
  source=[
    "hybrid_36_c.c",
    "probe.c",
    "dots.c",
    "abin.c",
    "readPDBrecs.c",
    "geom3d.c",
    "utility.c",
    "select.c",
    "parse.c",
    "atomprops.c",
    "stdconntable.c",
    "autobondrot.c"])