]> git.lyx.org Git - lyx.git/blobdiff - src/support/Makefile.am
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / Makefile.am
index 55d486b7d1818466882b372bb38dd94648d10d07..04e5acaeb1c82883e987f9068b5b1f0b988a4c16 100644 (file)
@@ -1,6 +1,5 @@
 include $(top_srcdir)/config/common.am
 
-nodist_include_HEADERS = path_defines.C
 noinst_LTLIBRARIES = libsupport.la
 
 CLEANFILES = path_defines.C
@@ -14,6 +13,10 @@ if USE_LYXSTRING
 LYXSTRING = lyxstring.C lyxstring.h
 endif
 
+if USE_COMPRESSION
+COMPRESSION = gzstream.C gzstream.h
+endif
+
 BUILT_SOURCES = path_defines.C
 
 libsupport_la_SOURCES = \
@@ -46,7 +49,7 @@ libsupport_la_SOURCES = \
        forkedcontr.C \
        forkedcontr.h \
        getcwd.C \
-       kill.C \
+       $(COMPRESSION) kill.C \
        limited_stack.h \
        lstrings.C \
        lstrings.h \
@@ -64,6 +67,7 @@ libsupport_la_SOURCES = \
        path.C \
        path.h \
        path_defines.C \
+       path_defines.h \
        putenv.C \
        rename.C \
        rmdir.C \
@@ -88,8 +92,10 @@ path_defines.C: build_path_defines
 build_path_defines: path_defines.C.in
        @rm -f tmp_path_defines ;\
        ABS_SRCDIR=`cd $(top_srcdir) && pwd` ;\
+       ABS_BUILDDIR=`cd ../.. && pwd` ;\
        sed "s,%LYX_DIR%,$(pkgdatadir), ;\
                s,%LOCALEDIR%,$(datadir)/locale, ;\
+               s,%BUILDDIR%,$${ABS_BUILDDIR}, ;\
                s,%TOP_SRCDIR%,$${ABS_SRCDIR}," \
                $(srcdir)/path_defines.C.in > tmp_path_defines ;\
        if cmp -s tmp_path_defines path_defines.C ; then \