"Fossies" - the Fresh Open Source Software Archive

Member "libcaca-0.99.beta20/cxx/Makefile.am" (3 May 2018, 674 Bytes) of package /linux/privat/libcaca-0.99.beta20.tar.bz2:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. See also the latest Fossies "Diffs" side-by-side code changes report for "Makefile.am": 0.99.beta19_vs_0.99.beta20.

    1 
    2 include $(top_srcdir)/build/autotools/common.am
    3 
    4 EXTRA_DIST = libcaca++.vcxproj libcaca++.def test-cxx.vcxproj
    5 if USE_CXX
    6 pkgconfig_DATA = caca++.pc
    7 pkgconfigdir = $(libdir)/pkgconfig
    8 
    9 include_HEADERS = caca++.h
   10 lib_LTLIBRARIES = libcaca++.la
   11 endif
   12 
   13 libcaca___la_SOURCES = caca++.cpp caca++.h
   14 libcaca___la_LDFLAGS = -no-undefined -version-number @LT_VERSION@
   15 libcaca___la_LIBADD = ../caca/libcaca.la
   16 
   17 if USE_CXX
   18 noinst_PROGRAMS = cxxtest
   19 endif
   20 
   21 cxxtest_SOURCES = cxxtest.cpp
   22 cxxtest_LDADD = libcaca++.la ../caca/libcaca.la
   23 
   24 uninstall-local:
   25 	. ./libcaca++.la || exit 1; \
   26 	rmdir $(DESTDIR)$(libdir) 2>/dev/null || true
   27 	rmdir $(DESTDIR)$(pkgconfigdir) 2>/dev/null || true
   28