# Makefile.am # # Copyright 2011, 2012 Andreas Tscharner <andy@vis.ethz.ch> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, # MA 02110-1301, USA. # # Check for DEBUG mode if DEBUG DEBUG_CFLAGS = -D__DEBUG__ DEBUG_CXXFLAGS = -D__DEBUG__ else DEBUG_CFLAGS = -O2 DEBUG_CXXFLAGS = -O2 endif # # Define C/C++ compiler flags for libraries if NO_ENCRYPTION CRYPTOPP_LIBADD= else CRYPTOPP_LIBADD = -lcryptopp if HAVE_CRYPTOPP CRYPTOPP_LIBFLAGS= else CRYPTOPP_LIBFLAGS = -L../strategies/cryptopp endif endif # # Define compiler flags AM_CFLAGS = $(DEBUG_CFLAGS) AM_CXXFLAGS = $(DEBUG_CXXFLAGS) -std=c++0x # # Define include headers and pkg-config files include_HEADERS = ../include/Resource.hxx ../include/ResourceManager.hxx pkgconfigdir=$(libdir)/pkgconfig pkgconfig_DATA = ../pkgconfig/liblrc.pc # # Define library lib_LTLIBRARIES = liblrc.la # # Define source files for liblrc library liblrc_la_SOURCES = ../lrcExceptions.hxx ../lrcExceptions.cxx \ ../include/Resource.hxx ../Resource.cxx \ ../include/ResourceManager.hxx ResourceManager.cxx \ ../ResourceData.hxx ../ResourceData.cxx \ ../Utils.hxx ../Utils.cxx \ ../Factories.hxx ../Factories.cxx \ ../strategies/NoneCompression.hxx ../strategies/NoneCompression.cxx \ ../strategies/zLibCompression.hxx ../strategies/zLibCompression.cxx \ ../strategies/bz2LibCompression.hxx ../strategies/bz2LibCompression.cxx \ ../strategies/NoneEncryption.hxx ../strategies/NoneEncryption.cxx \ ../StatusCodes.hxx if !NO_ENCRYPTION liblrc_la_SOURCES += ../strategies/SerpentEncryption.hxx ../strategies/SerpentEncryption.cxx endif # # Library flags for main program liblrc_la_LIBADD = $(CRYPTOPP_LIBADD) -lz -lbz2 liblrc_la_LDFLAGS = $(CRYPTOPP_LIBFLAGS) -version-info 0:0:0