File: Conscript

package info (click to toggle)
atom4 4.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 664 kB
  • ctags: 947
  • sloc: cpp: 4,451; makefile: 52; sh: 45; perl: 6
file content (46 lines) | stat: -rw-r--r-- 788 bytes parent folder | download | duplicates (7)
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/cons
#
# Atom-4 X11 client sub- build script.
#
# $Id: Conscript,v 1.4 2003/03/12 04:10:24 hsteoh Exp hsteoh $
#

Import qw( CONS BINDIR DATADIR INCDIR LIBDIR );

# Products
Install $CONS $LIBDIR, 'libxatom4.a';
Install $CONS $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
Install $CONS $INCDIR,
	'xatom4.h',
	'xcursor.h',
	'xscoreboard.h',
	'xsprite.h',
	'xtext.h',
	'xtriboard.h',
	'xutil.h';

Library $CONS 'libxatom4.a',
	'xatom4.cc',
	'xcursor.cc',
	'xscoreboard.cc',
	'xsprite.cc',
	'xtriboard.cc',
	'xutil.cc';