]> 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 579a8e106f60fea62b9d9af1e0aecd03fe2549d5..04e5acaeb1c82883e987f9068b5b1f0b988a4c16 100644 (file)
@@ -2,20 +2,31 @@ include $(top_srcdir)/config/common.am
 
 noinst_LTLIBRARIES = libsupport.la
 
-INCLUDES = -I$(srcdir)/../ $(SIGC_INCLUDES) $(BOOST_INCLUDES)
+CLEANFILES = path_defines.C
 
-EXTRA_DIST = lyxstring.C lyxstring.h \
+INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES)
+
+EXTRA_DIST = path_defines.C.in lyxstring.C lyxstring.h \
             os_unix.C os_win32.C os_os2.C
 
 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 = \
+       BoostFormat.h \
        DebugStream.C \
        DebugStream.h \
        FileInfo.C \
        FileInfo.h \
+       FileMonitor.h \
+       FileMonitor.C \
        LAssert.C \
        LAssert.h \
        LIstream.h \
@@ -24,25 +35,30 @@ libsupport_la_SOURCES = \
        os.h \
        abort.C \
        atoi.C \
+       boost-inst.C \
        chdir.C \
        copy.C \
+       filename.C \
+       filename.h \
        filetools.C \
        filetools.h \
-       fmt.C \
        forkedcall.C \
        forkedcall.h \
+       forkedcallqueue.C \
+       forkedcallqueue.h \
        forkedcontr.C \
        forkedcontr.h \
        getcwd.C \
-       kill.C \
+       $(COMPRESSION) kill.C \
        limited_stack.h \
        lstrings.C \
        lstrings.h \
-       lxtl.h \
        lyxalgo.h \
        lyxfunctional.h \
        lyxlib.h \
        lyxmanip.h \
+       lyxtime.C \
+       lyxtime.h \
        $(LYXSTRING) lyxsum.C \
        mkdir.C \
        nt_defines.h \
@@ -50,10 +66,11 @@ libsupport_la_SOURCES = \
        os2_errortable.h \
        path.C \
        path.h \
+       path_defines.C \
+       path_defines.h \
        putenv.C \
        rename.C \
        rmdir.C \
-       smart_ptr.h \
        snprintf.h \
        snprintf.c \
        sstream.h \
@@ -61,7 +78,29 @@ libsupport_la_SOURCES = \
        systemcall.h \
        tempname.C \
        textutils.h \
+       tostr.h \
+       tostr.C \
        translator.h \
        types.h \
-       unlink.C \
-       utility.h
+       userinfo.C \
+       userinfo.h \
+       unlink.C
+
+
+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 \
+               rm -f tmp_path_defines ;\
+       else \
+               rm -f path_defines.C ;\
+               mv tmp_path_defines path_defines.C ;\
+       fi