You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/filters/kword/latex/import/parser/Makefile.am

33 lines
1.0 KiB

####### General stuff
INCLUDES= -I$(srcdir) $(all_includes)
liblatexparser_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
liblatexparser_la_LIBADD = -lm $(KOFFICE_LIBS)
####### Files
kde_module_LTLIBRARIES = liblatexparser.la
liblatexparser_la_SOURCES = command.cc comment.cc element.cc env.cc group.cc \
latexparser.cc param.cc text.cc texparser.cc \
texscaner.cc
noinst_HEADERS = command.h comment.h element.h env.h group.h \
latexparser.h param.h text.h
texparser.cc: $(srcdir)/texparser.l texscaner.cc
flex -B -8 -otexparser.cc $(srcdir)/texparser.l
texscaner.cc: $(srcdir)/texscaner.y
bison --debug --verbose -d -o texscaner.cc $(srcdir)/texscaner.y && mv -f texscaner.cc.h texscaner.hh
# -p texparser
######## Debug
check_PROGRAMS = texlauncher
texlauncher_SOURCES = texlauncher.cc
texlauncher_LDADD = liblatexexport.la
texlauncher_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
METASOURCES = AUTO