]> git.lyx.org Git - lyx.git/blobdiff - src/Makefile.am
Move #includes out of header files.
[lyx.git] / src / Makefile.am
index c788329f6b1d443d32b7d062933aa4ee522eb091..649144df958c3f4a2d4dd9619fe11382edfbf00f 100644 (file)
@@ -11,8 +11,7 @@ EXTRA_DIST = config.h.in stamp-h.in cheaders version.C.in \
        Sectioning.C \
        Variables.C \
        Variables.h \
-       tracer.C \
-       tracer.h
+       paper.h
 
 LYX_PRE_LIBS = mathed/libmathed.la insets/libinsets.la \
        frontends/libfrontends.la 
@@ -32,16 +31,21 @@ OTHERLIBS = $(BOOST_LIBS) $(INTLLIBS) $(AIKSAURUS_LIBS) @LIBS@
 
 bin_PROGRAMS = lyx 
 noinst_PROGRAMS = $(FRONTENDS_PROGS)
-EXTRA_PROGRAMS = lyx-xforms lyx-qt
+EXTRA_PROGRAMS = lyx-xforms lyx-qt lyx-gtk
 
 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_gtk_LDADD = $(lyx_OBJECTS) $(LYX_PRE_LIBS) \
+       frontends/gtk/libgtk.la $(LYX_POST_LIBS) $(OTHERLIBS)
+lyx_gtk_SOURCES = main.C
+
 lyx$(EXEEXT): $(FRONTENDS_PROGS)
        rm -f $@
        $(LN_S) $< $@
@@ -59,6 +63,8 @@ lyx_SOURCES = \
        BufferView_pimpl.h \
        Bullet.C \
        Bullet.h \
+       BranchList.C \
+       BranchList.h \
        Chktex.C \
        Chktex.h \
        CutAndPaste.C \
@@ -213,6 +219,7 @@ lyx_SOURCES = \
        messages.h \
        metricsinfo.C \
        metricsinfo.h \
+       paper.h \
        paragraph.C \
        paragraph.h \
        paragraph_pimpl.C \
@@ -261,3 +268,15 @@ lyx_SOURCES = \
 
 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 > $@