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.
tdevelop/buildtools/lib/parsers/qmake/Makefile.am

32 lines
1.1 KiB

# This directory collects some classes related to
# project management for the sole purpose that they
# can be shared between parts.
#SUBDIRS = tests
INCLUDES = -I$(top_srcdir)/lib/interfaces \
-I$(top_srcdir)/lib/interfaces/extensions -I$(top_srcdir)/lib/util -I$(top_srcdir)/lib/widgets/propeditor \
$(all_includes)
METASOURCES = AUTO
lib_LTLIBRARIES = libkdevqmakeparser.la
libkdevqmakeparser_la_LDFLAGS = -no-undefined $(all_libraries) $(LIB_TDEIO)
libkdevqmakeparser_la_SOURCES = qmake_lex.cpp qmake_yacc.cpp qmakeast.cpp \
qmakeastvisitor.cpp qmakedriver.cpp
tdevelopbuildtoolsincludedir = $(includedir)/tdevelop/buildtools/parsers/qmake
tdevelopbuildtoolsinclude_HEADERS = qmakeast.h qmakedriver.h qmakeastvisitor.h
parser:
cd $(srcdir) ; \
bison -d qmake.yy -r all -k -t -oqmake_yacc.cpp ; \
flex -d -oqmake_lex.cpp qmake.ll
EXTRA_DIST = qmake.yy qmake.ll
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui tdehtml tdemdi tdeio kjs tdeparts tdeutils
DOXYGEN_PROJECTNAME = KDevelop QMake parser
DOXYGEN_DOCDIRPREFIX = kdevparser
include ../../../../Doxyfile.am
noinst_HEADERS = qmake.ll qmake.yy qmake_lex.h