source: trunk/athena/bin/xmore/Imakefile @ 7459

Revision 7459, 1.4 KB checked in by cfields, 30 years ago (diff)
There was no closing of the initial comment block in this file, so wonder of wonders, the generated Makefile didn't say to do anything useful. Of course the bizarre thing is that it's always been this way, and older versions of imake actually coped and did what was needed.
Line 
1/*
2 *
3 *      This is the Makefile for Xmore, a file browsing utility
4 *      built upon Xlib and the XToolkit.
5 *     
6 *      Created:        October 22, 1987
7 *      By:             Chris D. Peterson
8 *
9 *      $Id: Imakefile,v 1.4 1994-06-17 09:45:36 cfields Exp $
10 *
11 *         Copyright 1987, 1988 by the Massachusetts Institute of Technology.
12 *     
13 *      For further information on copyright and distribution
14 *      see the file mit-copyright.h
15 */
16
17# Directories to put the things into on install.
18
19LIBDIR=/usr/athena/lib
20
21DEFINES= -DHELPFILE=\"${LIBDIR}/xmore.help\"
22#ifdef sun
23LIBES= -lXaw -lXt -lXmu -lXext -lX11 -lm
24#else
25LIBES= -lXaw -lXt -lXmu -lXext -lX11
26#endif
27OBJS= globals.o help.o main.o pages.o ${XTKOBJS}
28XTKOBJS= ScrollByLine.o
29XTKFILES= ScrollByLine.c
30INCLUDE= defs.h globals.h more.h mit-copyright.h
31CFILES= globals.c help.c main.c pages.c ${XTKFILES}
32
33SimpleProgram(xmore,$(OBJS),$(LIBES),$(ATHBINDIR))
34install_file(xmore.help,$(LIBDIR))
35install_man(xmore.man,xmore.1)
36
37globals.o:      globals.c ${INCLUDE}
38help.o:         help.c ${INCLUDE}
39main.o:         main.c ${INCLUDE}
40pages.o:        pages.c ${INCLUDE}
41ScrollByLine.o: ScrollByLine.c ScrollByLineP.h ScrollByLine.h
42
43saber: ;
44        saber ${INCFLAGS} ${LDFLAGS} ${CFILES} ${LIBES}
45
46shar:   ;
47        shar README Makefile xmore.help xmore.man \
48             ${CFILES} ${XTKFILES} > xmore.shar
49
50manual: ;
51        nroff -man xmore.man > xmore.cat
52
53
54#if 0
55depend:
56        makedepend  ${CFLAGS} ${CFILES}
57#endif
Note: See TracBrowser for help on using the repository browser.