e43ea5d7d2066c230bfbdd0e619072c4bd2a70c3
[openafs.git] / src / comerr / Makefile.in
1 #
2 # Makefile for error-table routines
3 #
4 # Copyright 1987, 1989 MIT Student Information Processing Board
5 # For copyright info, see mit-sipb-cr.h.
6
7 srcdir=@srcdir@
8 include @TOP_OBJDIR@/src/config/Makefile.config
9 INSTALL = @INSTALL@
10 INSTALL_DATA = @INSTALL_DATA@
11 INSTALL_PROGRAM = @INSTALL_PROGRAM@
12 INSTALL_SCRIPT = @INSTALL_SCRIPT@
13
14 all: compile_et ${TOP_INCDIR}/afs/com_err.h ${TOP_INCDIR}/afs/error_table.h ${TOP_INCDIR}/afs/mit-sipb-cr.h ${TOP_LIBDIR}/libcom_err.a
15
16 ${TOP_INCDIR}/afs/com_err.h: com_err.h
17         ${INSTALL_DATA} $? $@
18
19 ${TOP_INCDIR}/afs/error_table.h: error_table.h
20         ${INSTALL_DATA} $? $@
21
22 ${TOP_INCDIR}/afs/mit-sipb-cr.h: mit-sipb-cr.h
23         ${INSTALL_DATA} $? $@
24
25 ${TOP_LIBDIR}/libcom_err.a: libcom_err.a
26         ${INSTALL_DATA} $? $@
27
28 et_lex.lex.c: et_lex.lex.l
29         $(RM) -f et_lex.lex.c
30         $(LEX) -t $(srcdir)/et_lex.lex.l > et_lex.lex.c
31
32 compile_et:     compile_et.o error_table.o
33         case $(SYS_NAME) in \
34         *_linux* | *_umlinux* ) \
35         ${CC} ${CFLAGS} -o compile_et compile_et.o error_table.o -L${TOP_LIBDIR} -lafsutil;; \
36         * ) \
37         ${CC} ${CFLAGS} -o compile_et compile_et.o error_table.o -L${TOP_LIBDIR} -lafsutil -ll;; \
38         esac
39
40 libcom_err.a: error_msg.o et_name.o com_err.o AFS_component_version_number.o
41         $(RM) -f $@
42         $(AR) crv $@ error_msg.o et_name.o com_err.o AFS_component_version_number.o
43         $(RANLIB) $@
44
45 #
46 # Files with errors
47 #
48 # The autogenerated file from bison has an unused label
49
50 error_table.o: error_table.c
51         $(CC) $(CFLAGS) @CFLAGS_NOERROR@ -c $<
52
53 #
54 # Installation targets
55 #
56 install: compile_et com_err.h error_table.h mit-sipb-cr.h libcom_err.a
57         ${INSTALL} -d ${DESTDIR}${bindir}
58         ${INSTALL} -d ${DESTDIR}${includedir}/afs
59         ${INSTALL} -d ${DESTDIR}${libdir}/afs
60         ${INSTALL_PROGRAM} compile_et ${DESTDIR}${bindir}/afs_compile_et
61         ${INSTALL_DATA} com_err.h ${DESTDIR}${includedir}/afs/com_err.h
62         ${INSTALL_DATA} error_table.h ${DESTDIR}${includedir}/afs/error_table.h
63         ${INSTALL_DATA} mit-sipb-cr.h ${DESTDIR}${includedir}/afs/mit-sipb-cr.h
64         ${INSTALL_DATA} libcom_err.a ${DESTDIR}${libdir}/afs/libcom_err.a
65
66 dest: compile_et com_err.h error_table.h mit-sipb-cr.h libcom_err.a
67         ${INSTALL} -d ${DEST}/bin
68         ${INSTALL} -d ${DEST}/include/afs
69         ${INSTALL} -d ${DEST}/lib/afs
70         ${INSTALL_PROGRAM} compile_et ${DEST}/bin/afs_compile_et
71         ${INSTALL_DATA} com_err.h ${DEST}/include/afs/com_err.h
72         ${INSTALL_DATA} error_table.h ${DEST}/include/afs/error_table.h
73         ${INSTALL_DATA} mit-sipb-cr.h ${DEST}/include/afs/mit-sipb-cr.h
74         ${INSTALL_DATA} libcom_err.a ${DEST}/lib/afs/libcom_err.a
75
76 clean:
77         $(RM) -f *~ \#* *.bak *.otl *.aux *.toc *.PS *.dvi *.x9700 *.ps \
78                 *.cp *.fn *.ky *.log *.pg *.tp *.vr *.o libcom_err.a \
79                 com_err.o compile_et et.ar TAGS y.tab.c lex.yy.c error_table.c \
80                 et_lex.lex.c test1.h test1.c test2.h test2.c \
81                 eddep makedep core AFS_component_version_number.c
82
83 test:
84         cd test; $(MAKE)
85
86 compile_et.o:  AFS_component_version_number.c
87 error_table.o: et_lex.lex.c
88
89 include ../config/Makefile.version