1 |
# Makefile for i-scream ihost |
2 |
# http://www.i-scream.org.uk/ |
3 |
# $Id: Makefile.am,v 1.10 2003/02/05 23:02:12 tdb Exp $ |
4 |
|
5 |
AUTOMAKE_OPTIONS = gnu |
6 |
|
7 |
SUBDIRS = libukcprog |
8 |
|
9 |
bin_PROGRAMS = ihost |
10 |
ihost_SOURCES = ihost.c |
11 |
ihost_LDADD = ./libukcprog/libukcprog.a |
12 |
|
13 |
INCLUDES = -I@top_srcdir@/libukcprog |
14 |
|
15 |
if SETGIDKMEM |
16 |
# FreeBSD needs ihost to be setgid kmem |
17 |
install-exec-local: |
18 |
chgrp kmem @bindir@/ihost |
19 |
chmod g+s @bindir@/ihost |
20 |
else |
21 |
install-exec-local: |
22 |
endif |
23 |
|
24 |
ChangeLog: |
25 |
cvs2cl --stdout --no-wrap -r -t -w -S -g "-d :pserver:anonymous@cvs.i-scream.org.uk:/cvs/i-scream" -g "-q" > ChangeLog |