File: Conscript

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-- 316 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
#!/usr/bin/cons
#
# Atom-4 networking routines build script.
#
# $Id: Conscript,v 1.1 2003/04/13 12:59:18 hsteoh Exp hsteoh $
#

Import qw( CONS INCDIR LIBDIR );

# Products
Install $CONS $LIBDIR, 'libatomnet.a';
Install $CONS $INCDIR,
	'net.h',
	'server.h';

Library $CONS 'libatomnet.a',
	'net.cc',
	'server.cc';