1# these are the headers for your project
2noinst_HEADERS = cr3.h
3
4#########################################################################
5# APPLICATION SECTION
6#########################################################################
7# this is the program that gets installed.  it's name is used for all
8# of the other Makefile.am variables
9bin_PROGRAMS = cr3
10
11# the application source, library search path, and link libraries
12cr3_SOURCES = cr3.cpp histlist.cpp optdlg.cpp toc.cpp view.cpp wolopt.cpp
13cr3_LDFLAGS = $(WX_LIBS)
14
15cr3_LDADD = $(top_builddir)/crengine/src/libcrengine.a
16
17crenginedir = $(datadir)/crengine
18crengine_DATA = fb2.css
19AM_CFLAGS = -DCR_WX_SUPPORT
20AM_CXXFLAGS = -DCR_WX_SUPPORT
21