File: SConscript

package info (click to toggle)
atom4 4.1-8
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 828 kB
  • sloc: cpp: 4,451; makefile: 46; perl: 6
file content (46 lines) | stat: -rw-r--r-- 734 bytes parent folder | download | duplicates (2)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/scons -u
#
# Atom-4 X11 client sub- build script.
#

Import('env', 'bindir', 'datadir', 'incdir', 'libdir')

# Products
env.Install(libdir, 'libxatom4.a')
env.Install(datadir, [
	'tritile12.xpm',
	'blackball12.xpm',
	'redball12.xpm',
	'greenball12.xpm',
	'blueball12.xpm',
	'turqball12.xpm',
	'purpleball12.xpm',
	'yellowball12.xpm',
	'whiteball12.xpm',
	'wheel12-1.xpm',
	'wheel12-2.xpm',
	'wheel12-3.xpm',
	'wheel12-4.xpm',
	'wheel12-5.xpm',
	'wheel12-6.xpm'
])

# Headers
env.Install(incdir, [
	'xatom4.h',
	'xcursor.h',
	'xscoreboard.h',
	'xsprite.h',
	'xtext.h',
	'xtriboard.h',
	'xutil.h'
])

env.Library('libxatom4.a', [
	'xatom4.cc',
	'xcursor.cc',
	'xscoreboard.cc',
	'xsprite.cc',
	'xtriboard.cc',
	'xutil.cc'
])