Spracherkennung für: .in vermutete Sprache: Lisp {Lisp[83] Latech[129] Isabelle[137]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
###/* This file is part of
###* ======================================================
###*
###* LyX, the High Level Word Processor
###*
###* Copyright (C) 1995 Matthias Ettrich
###*
###*======================================================*/
###
###
### Makefile by Jean-Marc Lasgouttes ([email protected])
###
# Common autoconf directories
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
bindir = @bindir@
datadir = @datadir@
mandir = @mandir@
program_suffix = @program_suffix@
SCRIPT_SUFFIX=
# These are needed for the bindist target
absbuilddir=@absbuilddir@/lib
abssrcdir=@abstopsrcdir@/lib
# The name to use to install LyX
PACKAGE = @PACKAGE@
VERSION = @VERSION@
bindistdir = ../$(PACKAGE)-$(VERSION)-bin
distdir = $(PACKAGE)-$(VERSION)
# For all LyX support files
LYX_DIR = $(datadir)/$(PACKAGE)
###################################################################
# You should not need to change anything below this line.
# for multiple architectures compilation
VPATH = @srcdir@
# The GNU coding standards recommends this. Don't ask me why...
SHELL = /bin/sh
.SUFFIXES:
.SUFFIXES: .C .o
@SET_MAKE@
# Various commands
FIND = find
ETAGS = etags
MKINSTALLDIRS = $(top_srcdir)/config/mkinstalldirs
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
RM = rm -f
MANSUFFIX = 1
SUBDIRS = clipart layouts doc kbd templates bind examples tex images
CLIPART = clipart/*.eps
DEFS = layouts/*.layout layouts/*.inc
DOC = doc/*.lyx doc/LaTeXConfig.lyx.in doc/*.eps
KBD = kbd/*.kmap kbd/*.cdef
TEMPL = templates/*.lyx
BIND = bind/*.bind
EXAMPLES = examples/*.lyx
TEXSUPPORT = tex/*.cls
IMAGES = images/*.xpm images/*.xbm
MISC = lyxrc.example CREDITS chkconfig.ltx
MISCPROG = configure$(SCRIPT_SUFFIX)
BUILDINSTFILES = lyxrc.defaults doc/LaTeXConfig.lyx \
textclass.lst packages.lst
RELYXFILES = reLyX/*.pm reLyX/*.pl reLyX/README reLyX/BUGS reLyX/CHANGES\
reLyX/Text/*.pm reLyX/reLyX.pod reLyX/syntax.default
SRCDISTFILES = $(CLIPART) $(DEFS) $(DOC) $(KBD) $(DOC) $(KBD) $(TEMPL) \
$(BIND) $(EXAMPLES) $(TEXSUPPORT) $(IMAGES) $(MISC)
SRCDISTPROGS = $(MISCPROG)
BINDISTLINKS = $(SUBDIRS) $(MISC) $(MISCPROG) reLyX
all:
installdirs:
for dir in $(SUBDIRS); do \
$(MKINSTALLDIRS) $(LYX_DIR)/$$dir ; \
done
install-reLyX:
$(MKINSTALLDIRS) $(LYX_DIR)/reLyX \
$(LYX_DIR)/reLyX/Text
files=`cd ${srcdir} ; echo $(RELYXFILES)` ; \
for i in $${files} ; do \
$(INSTALL_DATA) ${srcdir}/$$i $(LYX_DIR)/$$i ; \
done ;
$(INSTALL_PROGRAM) reLyX/reLyX $(bindir)/reLyX
$(INSTALL_DATA) ${srcdir}/reLyX/reLyX.man \
$(mandir)/man$(MANSUFFIX)/reLyX.$(MANSUFFIX)
install: @INSTALL_TARGET@
install-unix: installdirs install-reLyX
files=`cd ${srcdir} ; echo $(SRCDISTFILES)` ; \
for i in $${files} ; do \
$(INSTALL_DATA) ${srcdir}/$$i $(LYX_DIR)/$$i ; \
done
files=`cd ${srcdir} ; echo $(SRCDISTPROGS)` ; \
for i in $${files} ; do \
$(INSTALL_PROGRAM) ${srcdir}/$$i $(LYX_DIR)/$$i ; \
done
for i in $(BUILDINSTFILES) ; do \
$(INSTALL_DATA) $$i $(LYX_DIR)/$$i ; \
done;
install-os2:
-mkdir $(X11ROOT)\XFree86\lib\X11\lyx
cd .. && xcopy /s lib $(X11ROOT)\XFree86\lib\X11\lyx
attrib +r $(X11ROOT)\XFree86\lib\X11\lyx\doc\*
-rm -f $(LYX_DIR)/configure $(LYX_DIR)/Makefile*
clean:
$(RM) *.log chkconfig.sed chkconfig.vars
distclean: clean
$(RM) Makefile $(BUILDINSTFILES) reLyX/reLyX
bindist: reLyX/reLyX.man
(cd $(bindistdir)/share/$(PACKAGE) ; \
for i in $(BINDISTLINKS); do \
ln -s $(abssrcdir)/$$i $$i ; \
done)
(cd $(bindistdir)/bin ; \
ln -s $(absbuilddir)/reLyX/reLyX reLyX )
(cd $(bindistdir)/man/man$(MANSUFFIX) ; \
ln -s $(absbuilddir)/reLyX/reLyX.man reLyX.$(MANSUFFIX))
[ Dauer der Verarbeitung: 0.97 Sekunden
]