Revision 9522,
711 bytes
checked in by ghudson, 28 years ago
(diff) |
Convert from imake to an autoconf-based build system
|
Line | |
---|
1 | # $Id: Makefile.in,v 1.1 1997-01-11 19:23:25 ghudson Exp $ |
---|
2 | |
---|
3 | SHELL=/bin/sh |
---|
4 | VPATH=@srcdir@ |
---|
5 | INSTALL=@INSTALL@ |
---|
6 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
7 | srcdir=@srcdir@ |
---|
8 | top_srcdir=@top_srcdir@ |
---|
9 | prefix=@prefix@ |
---|
10 | exec_prefix=@exec_prefix@ |
---|
11 | bindir=@bindir@ |
---|
12 | |
---|
13 | CC=@CC@ |
---|
14 | CPPFLAGS=@CPPFLAGS@ |
---|
15 | CFLAGS=@CFLAGS@ |
---|
16 | LDFLAGS=@LDFLAGS@ |
---|
17 | LIBS=@LIBS@ |
---|
18 | ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} |
---|
19 | |
---|
20 | all: newpag |
---|
21 | |
---|
22 | newpag: newpag.o |
---|
23 | ${CC} ${LDFLAGS} -o newpag newpag.o -lsys -lrx -llwp -lsys ${LIBS} |
---|
24 | |
---|
25 | .c.o: |
---|
26 | ${CC} -c ${ALL_CFLAGS} $< |
---|
27 | |
---|
28 | check: |
---|
29 | |
---|
30 | install: |
---|
31 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} |
---|
32 | ${INSTALL_PROGRAM} -m 555 newpag ${DESTDIR}${bindir}/newpag |
---|
33 | |
---|
34 | clean: |
---|
35 | rm -f newpag.o newpag |
---|
36 | |
---|
37 | distclean: clean |
---|
38 | rm -f config.cache config.log config.status Makefile |
---|
Note: See
TracBrowser
for help on using the repository browser.