source: trunk/third/top/Makefile.athena @ 17776

Revision 17776, 474 bytes checked in by zacheiss, 22 years ago (diff)
Don't bother building a 32 bit binary on Solaris; all our supported hardware is booting the 64 bit kernel these days.
Line 
1# $Id: Makefile.athena,v 1.12 2002-07-19 23:42:56 zacheiss Exp $
2
3SHELL=/bin/sh
4
5dist:
6
7prepare:
8        rm -f .defaults
9        cp "defaults.$$ATHENA_HOSTTYPE" .defaults
10        module=`sed -n "s/^set module = '\(.*\)'$$/\1/p" .defaults`; \
11        ./Configure "$$module"
12
13clean:
14        ${MAKE} clean
15
16all:
17        case $$ATHENA_HOSTTYPE in \
18        sun4) \
19            ${MAKE} all CDEFS="-xarch=v9 -O" \
20            ;; \
21        *) \
22            ${MAKE} all \
23            ;; \
24        esac
25
26check:
27
28install: always
29        ${MAKE} install "DESTDIR=$$SRVD"; \
30
31always:
Note: See TracBrowser for help on using the repository browser.