ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/ihost/Makefile.am
Revision: 1.4
Committed: Thu May 30 12:22:46 2002 UTC (21 years, 11 months ago) by tdb
Branch: MAIN
Changes since 1.3: +2 -0 lines
Log Message:
Seems the installer needs the install-exec-local target... maybe it knows
about it because it's mentioned somewhere... even though it won't be used
on non-FreeBSD platforms.

File Contents

# User Rev Content
1 tdb 1.1 bin_PROGRAMS = ihost
2     ihost_SOURCES = ihost.c
3     ihost_LDADD = @top_srcdir@/libstatgrab/libstatgrab.a @top_srcdir@/libukcprog/libukcprog.a
4 tdb 1.2 bin_SCRIPTS = ihostchk.sh
5 tdb 1.1 INCLUDES = -I@top_srcdir@/libstatgrab -I@top_srcdir@/libukcprog
6     SUBDIRS = libukcprog libstatgrab
7     AUTOMAKE_OPTIONS = foreign
8 tdb 1.3
9     if SETGIDKMEM
10     # FreeBSD needs ihost to be setgid kmem
11     install-exec-local:
12     chgrp kmem @bindir@/ihost
13     chmod g+s @bindir@/ihost
14 tdb 1.4 else
15     install-exec-local:
16 tdb 1.3 endif