]> git.lyx.org Git - lyx.git/blobdiff - src/Makefile.am
More 'standard conformant blurb' nonsense.
[lyx.git] / src / Makefile.am
index cdafd15d4c1edaddd01e6645c842a2639f2d8f20..4f328f92d1e69ffdf31850e960318270ceaad45d 100644 (file)
@@ -14,12 +14,10 @@ EXTRA_DIST = config.h.in stamp-h.in cheaders version.C.in \
        tracer.C \
        tracer.h
 
-bin_PROGRAMS = lyx
+LYX_PRE_LIBS = mathed/libmathed.la insets/libinsets.la \
+       frontends/libfrontends.la 
 
-LYX_CONV_LIBS = mathed/libmathed.la insets/libinsets.la \
-       frontends/libfrontends.la \
-       $(FRONTEND_GUILIB) \
-       frontends/controllers/libcontrollers.la \
+LYX_POST_LIBS = frontends/controllers/libcontrollers.la \
        graphics/libgraphics.la \
        support/libsupport.la
 
@@ -30,17 +28,29 @@ else
 BOOST_LIBS = -lboost_regex -lboost_signals
 endif
 
-lyx_LDADD = $(LYX_CONV_LIBS) $(BOOST_LIBS) $(INTLLIBS) \
-       $(AIKSAURUS_LIBS) @LIBS@
+OTHERLIBS = $(BOOST_LIBS) $(INTLLIBS) $(AIKSAURUS_LIBS) @LIBS@
 
-lyx_DEPENDENCIES = $(LYX_CONV_LIBS) $(BOOST_LIBS) $(INTLLIBS)
+bin_PROGRAMS = lyx 
+noinst_PROGRAMS = $(FRONTENDS_PROGS)
+EXTRA_PROGRAMS = lyx-xforms lyx-qt
+
+lyx_xforms_LDADD = $(lyx_OBJECTS) $(LYX_PRE_LIBS) \
+       frontends/xforms/libxforms.la $(LYX_POST_LIBS) $(OTHERLIBS) 
+
+lyx_xforms_SOURCES = main.C
+
+lyx_qt_LDADD = $(lyx_OBJECTS) $(LYX_PRE_LIBS) \
+       frontends/qt2/libqt2.la $(LYX_POST_LIBS) $(OTHERLIBS)
+lyx_qt_SOURCES = main.C
+
+lyx$(EXEEXT): $(FRONTENDS_PROGS)
+       rm -f $@
+       $(LN_S) $< $@
 
 #lyx_LDFLAGS=-Wl,-O1
 
 INCLUDES = $(BOOST_INCLUDES)
 
-localedir = $(datadir)/locale
-
 BUILT_SOURCES = version.C
 
 lyx_SOURCES = \
@@ -50,6 +60,8 @@ lyx_SOURCES = \
        BufferView_pimpl.h \
        Bullet.C \
        Bullet.h \
+       BranchList.C \
+       BranchList.h \
        Chktex.C \
        Chktex.h \
        CutAndPaste.C \
@@ -200,11 +212,11 @@ lyx_SOURCES = \
        lyxtextclasslist.h \
        lyxvc.C \
        lyxvc.h \
-       main.C \
        messages.C \
        messages.h \
        metricsinfo.C \
        metricsinfo.h \
+       paper.h \
        paragraph.C \
        paragraph.h \
        paragraph_pimpl.C \
@@ -220,8 +232,6 @@ lyx_SOURCES = \
        sgml.h \
        tabular.C \
        tabular.h \
-       tabular_funcs.C \
-       tabular_funcs.h \
        tex-accent.C \
        tex-accent.h \
        tex-strings.C \
@@ -231,6 +241,8 @@ lyx_SOURCES = \
        text.C \
        text2.C \
        text3.C \
+       textcursor.C \
+       textcursor.h \
        text_funcs.C \
        text_funcs.h \
        toc.C \
@@ -251,15 +263,17 @@ lyx_SOURCES = \
        vspace.C \
        vspace.h
 
-lyx_main.o: lyx_main.C lyx_main.h config.h version.h \
-       lyxrc.h support/path.h support/filetools.h \
-       bufferlist.h debug.h support/FileInfo.h lastfiles.h intl.h \
-       lyxserver.h layout.h gettext.h kbmap.h lfuns.h language.h
-       $(CXXCOMPILE) -DLYX_DIR=\"$(pkgdatadir)\" \
-         -DTOP_SRCDIR=\"$(top_srcdir)\" -c $(top_srcdir)/src/lyx_main.C
-
-messages.o: messages.C messages.h config.h LString.h support/filetools.h
-       $(CXXCOMPILE) -DLOCALEDIR=\"$(localedir)\" -c $(top_srcdir)/src/messages.C
-
 dist-hook:
        cd $(distdir) ; rm -rf `find cheaders -name \*CVS\*`
+
+version.C: stamp-version
+       @:
+
+stamp-version: version.C-tmp
+       if cmp -s $< version.C ; then \
+               : ;\
+       else \
+               rm -f version.C ;\
+               cp $< version.C ;\
+       fi
+       echo timestamp > $@