source: trunk/athena/bin/machtype/Imakefile @ 11926

Revision 11926, 608 bytes checked in by rbasch, 26 years ago (diff)
Install program setgid to sys, instead of setuid to root.
Line 
1/*
2 * $Id: Imakefile,v 1.19 1998-09-10 16:39:08 rbasch Exp $
3 */
4
5#ifdef SOLARIS
6LIBS=-lkvm -ladm
7#endif
8
9#ifdef sgi
10LIBS=-lmld
11#endif
12
13NAME=${HOSTTYPE}
14OSNAME=`uname -s`
15OSVERS=`uname -r`
16
17machtype_$(NAME).o:     ${ATHVERS} machtype_$(NAME).c
18        $(RM) $@
19        . $(ATHVERS); \
20        $(CC) -c $(CFLAGS) -DATHMAJV=\"$$major\" -DATHMINV=\"$$minor\" \
21        -DATHSYS=\"${ATHENA_SYS}\" -DATHSYSCOMPAT=\"${ATHENA_SYS_COMPAT}\" \
22        -DOSNAME=\"${OSNAME}\" -DOSVERS=\"${OSVERS}\" $*.c
23
24build_program(machtype, machtype_${NAME}.o,,${LIBS})
25install_program(machtype,-m 2755 -o root -g sys,${ATHRBINDIR})
26
27install_man(machtype.1,machtype.1)
Note: See TracBrowser for help on using the repository browser.