File: Conscript

package info (click to toggle)
atom4 4.1-6
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 656 kB
  • ctags: 947
  • sloc: cpp: 4,461; makefile: 54; sh: 21; perl: 6
file content (19 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (6)
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';