mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
b5589bf6cf
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9463 a592a061-630c-0410-9148-cb99ea01b6c8
99 lines
1.6 KiB
Makefile
99 lines
1.6 KiB
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
noinst_LTLIBRARIES = libsupport.la
|
|
|
|
CLEANFILES += path_defines.C
|
|
|
|
EXTRA_DIST = package.C.in os_unix.C os_win32.C os_os2.C
|
|
|
|
if USE_COMPRESSION
|
|
COMPRESSION = gzstream.C gzstream.h
|
|
endif
|
|
|
|
BUILT_SOURCES = package.C
|
|
|
|
AM_CPPFLAGS = $(PCH_FLAGS) -I$(srcdir)/.. $(BOOST_INCLUDES)
|
|
|
|
libsupport_la_SOURCES = \
|
|
FileInfo.C \
|
|
FileInfo.h \
|
|
FileMonitor.h \
|
|
FileMonitor.C \
|
|
abort.C \
|
|
atoi.C \
|
|
chdir.C \
|
|
convert.C \
|
|
convert.h \
|
|
copy.C \
|
|
copied_ptr.h \
|
|
cow_ptr.h \
|
|
debugstream.h \
|
|
filefilterlist.C \
|
|
filefilterlist.h \
|
|
filename.C \
|
|
filename.h \
|
|
filetools.C \
|
|
filetools.h \
|
|
forkedcall.C \
|
|
forkedcall.h \
|
|
forkedcallqueue.C \
|
|
forkedcallqueue.h \
|
|
forkedcontr.C \
|
|
forkedcontr.h \
|
|
getcwd.C \
|
|
globbing.C \
|
|
globbing.h \
|
|
$(COMPRESSION) kill.C \
|
|
limited_stack.h \
|
|
lstrings.C \
|
|
lstrings.h \
|
|
lyxalgo.h \
|
|
lyxlib.h \
|
|
lyxmanip.h \
|
|
lyxtime.C \
|
|
lyxtime.h \
|
|
lyxsum.C \
|
|
mkdir.C \
|
|
os.C \
|
|
os.h \
|
|
os2_defines.h \
|
|
os2_errortable.h \
|
|
path.C \
|
|
path.h \
|
|
package.C \
|
|
package.h \
|
|
putenv.C \
|
|
rename.C \
|
|
rmdir.C \
|
|
socktools.C \
|
|
socktools.h \
|
|
std_istream.h \
|
|
std_ostream.h \
|
|
systemcall.C \
|
|
systemcall.h \
|
|
tempname.C \
|
|
textutils.h \
|
|
translator.h \
|
|
types.h \
|
|
userinfo.C \
|
|
userinfo.h \
|
|
unlink.C
|
|
|
|
|
|
package.C: build_package
|
|
|
|
build_package: package.C.in
|
|
@rm -f tmp_package ;\
|
|
ABS_SRCDIR=`cd $(top_srcdir) && pwd` ;\
|
|
ABS_BUILDDIR=`cd ../.. && pwd` ;\
|
|
sed "s,%LYX_DIR%,$(pkgdatadir), ;\
|
|
s,%LOCALEDIR%,$(datadir)/locale, ;\
|
|
s,%TOP_SRCDIR%,$${ABS_SRCDIR}," \
|
|
$(srcdir)/package.C.in > tmp_package ;\
|
|
if cmp -s tmp_package package.C ; then \
|
|
rm -f tmp_package ;\
|
|
else \
|
|
rm -f package.C ;\
|
|
mv tmp_package package.C ;\
|
|
fi
|