mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
b6e30400f5
* src/lyx_main.C (init): call Formats::setAutoOpen. * src/lyxrc.C (read): do not reset editor/viewer values of "none". * src/format.C (fixCommand): helper function: tweak command depending of the availability of OS viewer/editor. (setAutoOpen): run fixCommand over all the formats. * src/support/Makefile.am: under win32, link against shlwapi.dll. * src/support/os_*.C (canAutoOpenFile, autoOpenFile): new functions, used to let the OS handle viewers and editors it knows about. * configure.ac: improve check for shlwapi. * lib/configure.py: remove check for native windows viewers. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13855 a592a061-630c-0410-9148-cb99ea01b6c8
96 lines
1.7 KiB
Makefile
96 lines
1.7 KiB
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
SUBDIRS = . tests
|
|
|
|
CLEANFILES += $(BUILT_SOURCES)
|
|
|
|
EXTRA_DIST = package.C.in pch.h \
|
|
os_cygwin.C os_unix.C os_win32.C os_win32.h
|
|
|
|
noinst_LTLIBRARIES = libsupport.la
|
|
|
|
libsupport_la_LIBADD = $(LIBSHLWAPI)
|
|
|
|
BUILT_SOURCES = $(PCH_FILE) package.C
|
|
|
|
AM_CPPFLAGS += $(PCH_FLAGS) -I$(srcdir)/.. $(BOOST_INCLUDES)
|
|
|
|
libsupport_la_SOURCES = \
|
|
FileMonitor.h \
|
|
FileMonitor.C \
|
|
RandomAccessList.h \
|
|
abort.C \
|
|
chdir.C \
|
|
convert.C \
|
|
convert.h \
|
|
copy.C \
|
|
copied_ptr.h \
|
|
cow_ptr.h \
|
|
debugstream.h \
|
|
environment.h \
|
|
environment.C \
|
|
filefilterlist.C \
|
|
filefilterlist.h \
|
|
filename.C \
|
|
filename.h \
|
|
filetools.C \
|
|
filetools.h \
|
|
forkedcall.C \
|
|
forkedcall.h \
|
|
forkedcallqueue.C \
|
|
forkedcallqueue.h \
|
|
forkedcontr.C \
|
|
forkedcontr.h \
|
|
fs_extras.C \
|
|
fs_extras.h \
|
|
getcwd.C \
|
|
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 \
|
|
path.C \
|
|
path.h \
|
|
package.C \
|
|
package.h \
|
|
rename.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
|
|
|
|
# Solaris sed does not like spaces bewteen the ;-delimited commands
|
|
build_package: package.C.in
|
|
@rm -f tmp_package ;\
|
|
sed "s,%LYX_DIR%,$(LYX_ABS_INSTALLED_DATADIR),;\
|
|
s,%LOCALEDIR%,$(LYX_ABS_INSTALLED_LOCALEDIR),;\
|
|
s,%TOP_SRCDIR%,$(LYX_ABS_TOP_SRCDIR),;\
|
|
s,%PROGRAM_SUFFIX%,$(program_suffix)," \
|
|
$(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
|