source: trunk/third/kermit/Makefile.athena @ 17382

Revision 17382, 893 bytes checked in by ghudson, 23 years ago (diff)
Use correct build target for gcc on Solaris.
Line 
1# $Id: Makefile.athena,v 1.6 2002-03-21 04:53:15 ghudson Exp $
2
3SHELL=/bin/sh
4
5dist:
6
7prepare:
8
9clean:
10        ${MAKE} clean
11
12all:
13        case "$${ATHENA_HOSTTYPE}" in \
14          linux) \
15              target=linux \
16              ;; \
17          inbsd) \
18              target=netbsd \
19              MAKEFLAGS="CC=$$COMPILER CC2=$$COMPILER"; export MAKEFLAGS; \
20              ;; \
21          sgi) \
22              case "`uname -r`" in \
23                5.*) \
24                    target=irix51 \
25                    ;; \
26                *) \
27                    target=irix60 \
28                    ;; \
29              esac \
30              ;; \
31          sun4) \
32              target=solaris2xg \
33              ;; \
34          *) \
35              target=posix \
36              ;; \
37        esac; ${MAKE} MAKE="${MAKE} CC=$$COMPILER CC2=$$COMPILER" $$target
38
39check:
40
41install:
42        mkdir -p $$SRVD/usr/athena/bin $$SRVD/usr/athena/man/man1
43        ${MAKE} install WERMIT=wermit DESTDIR="$$SRVD" \
44                MANDIR=/usr/athena/man/man1 MANEXT=1 BINDIR=/usr/athena/bin
Note: See TracBrowser for help on using the repository browser.