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

Revision 8867, 560 bytes checked in by ghudson, 28 years ago (diff)
Simplify, and use the standard method for determining the platform and arch.
Line 
1/*
2 * $Id: Imakefile,v 1.15 1996-09-20 02:10:17 ghudson Exp $
3 */
4
5#ifdef SOLARIS
6LIBS=-lkvm
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=\"$$ATHMAJV\" -DATHMINV=\"$$ATHMINV\" \
21        -DATHSYS=\"${ATHENA_SYS}\" -DOSNAME=\"${OSNAME}\" \
22        -DOSVERS=\"${OSVERS}\" $*.c
23
24build_program(machtype, machtype_${NAME}.o,,${LIBS})
25install_program(machtype,-m 4755 -o root,${ATHRBINDIR})
26
27install_man(machtype.1,machtype.1)
Note: See TracBrowser for help on using the repository browser.