1# $Id: Makefile.am,v 1.27 2002/03/10 23:52:41 assar Exp $ 2 3include $(top_srcdir)/Makefile.am.common 4 5YFLAGS = -d 6 7lib_LTLIBRARIES = libcom_err.la 8libcom_err_la_LDFLAGS = -version-info 2:1:1 9 10bin_PROGRAMS = compile_et 11 12include_HEADERS = com_err.h com_right.h 13 14compile_et_SOURCES = compile_et.c compile_et.h parse.y lex.l 15 16libcom_err_la_SOURCES = error.c com_err.c roken_rename.h 17 18CLEANFILES = lex.c parse.c parse.h 19 20$(compile_et_OBJECTS): parse.h parse.c ## XXX broken automake 1.4s 21 22compile_et_LDADD = \ 23 $(LIB_roken) \ 24 $(LEXLIB) 25