source: trunk/third/moira/util/et/Makefile.in @ 23740

Revision 23740, 916 bytes checked in by broder, 15 years ago (diff)
In moira: * New CVS snapshot (Trac: #195) * Drop patches that have been incorporated upstream. * Update to build without krb4 on systems that no longer have it. This doesn't build yet on squeeze, which lacks a krb4 library, but I'm committing now before I start hacking away at a patch to fix that.
Line 
1# $Id: Makefile.in,v 1.2 1998-05-26 18:14:24 danw Exp $
2
3SHELL=/bin/sh
4VPATH=@srcdir@
5INSTALL=@INSTALL@
6INSTALL_PROGRAM=@INSTALL_PROGRAM@
7RANLIB=@RANLIB@
8srcdir=@srcdir@
9top_srcdir=@top_srcdir@
10prefix=@prefix@
11exec_prefix=@exec_prefix@
12bindir=@bindir@
13libdir=@libdir@
14includedir=@includedir@
15mandir=@mandir@
16
17CC=@CC@
18YACC=@YACC@
19LEX=@LEX@
20CPPFLAGS=@CPPFLAGS@
21CFLAGS=@CFLAGS@
22LDFLAGS=@LDFLAGS@
23LIBS=@LIBS@
24ALL_CFLAGS=${CPPFLAGS} ${CFLAGS}
25
26LIBOBJS=com_err.o error_message.o et_name.o init_et.o
27BINOBJS=compile_et.o error_table.o
28
29all: libcom_err.a compile_et
30
31libcom_err.a: ${LIBOBJS}
32        ar cru $@ ${LIBOBJS}
33        ${RANLIB} $@
34
35compile_et: ${BINOBJS}
36        ${CC} ${LDFLAGS} -o compile_et ${BINOBJS} ${LIBS}
37
38error_table.o: et_lex.lex.c
39
40.c.o:
41        ${CC} -c -I. ${ALL_CFLAGS} $<
42
43check:
44
45clean:
46        rm -f ${LIBOBJS} ${BINOBJS} compile_et libcom_err.a et_lex.lex.c
47
48distclean: clean
49        rm -f config.cache config.log config.status Makefile
Note: See TracBrowser for help on using the repository browser.