]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Makefile.am
Move LaTeX and VC logs to GUI-I on xforms
[lyx.git] / src / frontends / xforms / Makefile.am
1 AUTOMAKE_OPTIONS = foreign 1.4
2 DISTCLEANFILES= *.orig *.rej *~ *.bak core
3 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
4 noinst_LTLIBRARIES = libxforms.la
5 BOOST_INCLUDES = -I$(top_srcdir)/boost
6 INCLUDES = -I${top_srcdir}/src/ \
7         -I${top_srcdir}/src/frontends/ \
8         ${SIGC_CFLAGS} $(BOOST_INCLUDES)
9 LIBS=
10 LDFLAGS=
11 LYXDATADIRS = forms
12 ETAGS_ARGS = --lang=c++
13 # Alphabetical order please.  It makes it easier to figure out what's missing. 
14 libxforms_la_SOURCES = \
15         ButtonController.C \
16         ButtonController.h \
17         Color.C \
18         Color.h \
19         Dialogs.C \
20         GUIRunTime.C \
21         FormBase.C \
22         FormBase.h \
23         FormBrowser.C \
24         FormBrowser.h \
25         form_browser.C \
26         form_browser.h \
27         FormCitation.C \
28         FormCitation.h \
29         form_citation.C \
30         form_citation.h \
31         FormCopyright.C \
32         FormCopyright.h \
33         form_copyright.C \
34         form_copyright.h \
35         FormDocument.C \
36         FormDocument.h \
37         form_document.C \
38         form_document.h \
39         FormError.C \
40         FormError.h \
41         form_error.C \
42         form_error.h \
43         FormGraphics.C \
44         FormGraphics.h \
45         form_graphics.C \
46         form_graphics.h \
47         FormIndex.C \
48         FormIndex.h \
49         form_index.C \
50         form_index.h \
51         FormInset.C \
52         FormInset.h \
53         FormLog.C \
54         FormLog.h \
55         FormParagraph.C \
56         FormParagraph.h \
57         form_paragraph.C \
58         form_paragraph.h \
59         FormPreferences.C \
60         FormPreferences.h \
61         form_preferences.C \
62         form_preferences.h \
63         FormPrint.C \
64         FormPrint.h \
65         form_print.C \
66         form_print.h \
67         FormRef.C \
68         FormRef.h \
69         form_ref.C \
70         form_ref.h \
71         FormTabular.C \
72         FormTabular.h \
73         form_tabular.C \
74         form_tabular.h \
75         FormTabularCreate.C \
76         FormTabularCreate.h \
77         form_tabular_create.C \
78         form_tabular_create.h \
79         FormToc.C \
80         FormToc.h \
81         form_toc.C \
82         form_toc.h \
83         FormUrl.C \
84         FormUrl.h \
85         form_url.C \
86         form_url.h \
87         FormVCLog.C \
88         FormVCLog.h \
89         input_validators.h \
90         input_validators.C \
91         Menubar_pimpl.C \
92         Menubar_pimpl.h \
93         RadioButtonGroup.C \
94         RadioButtonGroup.h \
95         Toolbar_pimpl.C \
96         Toolbar_pimpl.h \
97         xform_helpers.C \
98         xform_helpers.h
99
100 # These still have to be added. Sooner or later. ARRae-20000411
101 #       GUI_defaults.C \
102 #       GUI_initialize.C \
103 #       GUI_postlyxrc.C \
104 #       GUI_runtime.C \
105 #       GUI_applymenu.C
106
107 # for convenience only
108 updatesrc:
109         $(MAKE) -C forms updatesrc
110  
111 # just copied from old lyx repository
112 dist-hook:
113         for subdir in $(LYXDATADIRS) ; do \
114         test -d $(distdir)/$$subdir \
115         || mkdir $(distdir)/$$subdir \
116         || exit 1; \
117         chmod 777 $(distdir)/$$subdir; \
118         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
119         echo $$list ; \
120         for fil in $$list ; do \
121         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
122         done ; \
123         done