File: SConscript

package info (click to toggle)
atom4 4.1-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 908 kB
  • sloc: cpp: 4,451; makefile: 25; perl: 6
file content (19 lines) | stat: -rw-r--r-- 358 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/scons -u
#
# Atom-4 ncurses module build script.
#

Import('compiler', 'cflags', 'bindir', 'incdir', 'objdir', 'proglibpath',
	'ncurseslib');

env = Environment(
  CC      = compiler,
  CFLAGS  = cflags,
  CPPPATH = [ incdir, proglibpath + '/include' ]
);

env.Install(incdir, 'textui.h')
env.Install(objdir, 'textui.o')

env.Object('textui.cc')