source: trunk/athena/bin/telnet/Imakefile @ 8621

Revision 8621, 1.2 KB checked in by ghudson, 28 years ago (diff)
imake sucks.
Line 
1/*
2 * Imakefile for Athenized Kerberized telnet
3 *
4 * $Author: ghudson $
5 * $Id: Imakefile,v 1.7 1996-06-26 21:50:57 ghudson Exp $
6 *
7 * Copyright 1994 by the Massachusetts Institute of Technology.
8 * For copying and distribution information, see the file
9 * "mit-copyright.h".
10 *
11 */
12
13#define ISUBDIRS tmac
14
15#ifdef ultrix
16PLATFORM=athena_ultrix.auth
17#endif
18#ifdef _AIX
19PLATFORM=athena_aix.auth
20#endif
21#ifdef sun
22PLATFORM=athena_solaris.auth
23#endif
24#ifdef hpux
25PLATFORM=athena_hpux.auth
26#endif
27#ifdef linux
28PLATFORM=athena_linux.auth
29#endif
30#ifdef __alpha
31PLATFORM=athena_osf1.auth
32#endif
33#ifdef sgi
34PLATFORM=athena_irix.auth
35#endif
36
37all:: Config.local
38
39Config.local: Config.local.sed
40        sed 's|ATHENA_LCCFLAGS|${CFLAGS}|g' < Config.local.sed > Config.local
41
42all::
43        cd libtelnet; make ${PLATFORM} CC="${CC}"
44        cd telnet; make ${PLATFORM} CC="${CC}"
45        cd telnetd; make ${PLATFORM} CC="${CC}"
46
47clean::
48        rm -f libtelnet/?*.o telnet/?*.o telnetd/?*.o
49        rm -f libtelnet/libtelnet.a telnet/telnet telnetd/telnetd
50
51install_program(telnetd/telnetd,,${ATHRETCDIR})
52
53install_program(telnet/telnet,,${ATHBINDIR})
54
55install_man(telnetd/telnetd.8,telnetd.8)
56
57install_man(telnet/telnet.1,telnet.1)
Note: See TracBrowser for help on using the repository browser.