2000-06-12 11:55:12 +00:00
|
|
|
AUTOMAKE_OPTIONS = foreign 1.4
|
|
|
|
DISTCLEANFILES= *.orig *.rej *~ *.bak core
|
|
|
|
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
|
|
|
|
noinst_LTLIBRARIES = libxforms.la
|
|
|
|
INCLUDES = -I${top_srcdir}/src/ \
|
|
|
|
-I${top_srcdir}/src/frontends/ \
|
|
|
|
${SIGC_CFLAGS}
|
|
|
|
LIBS=
|
|
|
|
LDFLAGS=
|
|
|
|
LYXDATADIRS = forms
|
|
|
|
ETAGS_ARGS = --lang=c++
|
|
|
|
libxforms_la_SOURCES = \
|
|
|
|
Dialogs.C \
|
|
|
|
FormCopyright.C \
|
|
|
|
FormCopyright.h \
|
|
|
|
form_copyright.C \
|
|
|
|
form_copyright.h \
|
2000-07-31 12:30:10 +00:00
|
|
|
FormGraphics.C \
|
|
|
|
FormGraphics.h \
|
|
|
|
form_graphics.C \
|
|
|
|
form_graphics.h \
|
2000-06-12 11:55:12 +00:00
|
|
|
FormPreferences.C \
|
|
|
|
FormPreferences.h \
|
|
|
|
form_preferences.C \
|
|
|
|
form_preferences.h \
|
|
|
|
FormPrint.C \
|
|
|
|
FormPrint.h \
|
|
|
|
form_print.C \
|
|
|
|
form_print.h \
|
2000-08-01 09:35:42 +00:00
|
|
|
FormGraphics.C \
|
|
|
|
FormGraphics.h \
|
|
|
|
form_graphics.C \
|
|
|
|
form_graphics.h \
|
|
|
|
FormCitation.C \
|
|
|
|
FormCitation.h \
|
|
|
|
form_citation.C \
|
|
|
|
form_citation.h \
|
2000-07-11 15:08:54 +00:00
|
|
|
FormTabular.C \
|
|
|
|
FormTabular.h \
|
|
|
|
form_tabular.C \
|
|
|
|
form_tabular.h \
|
2000-07-27 10:26:38 +00:00
|
|
|
FormUrl.C \
|
|
|
|
FormUrl.h \
|
|
|
|
form_url.C \
|
|
|
|
form_url.h \
|
2000-06-12 11:55:12 +00:00
|
|
|
input_validators.h \
|
|
|
|
input_validators.c \
|
2000-07-31 12:30:10 +00:00
|
|
|
Menubar_pimpl.C \
|
|
|
|
Menubar_pimpl.h \
|
|
|
|
RadioButtonGroup.C \
|
|
|
|
RadioButtonGroup.h \
|
|
|
|
Toolbar_pimpl.C \
|
|
|
|
Toolbar_pimpl.h \
|
2000-06-12 11:55:12 +00:00
|
|
|
xform_macros.h
|
|
|
|
|
|
|
|
# These still have to be added. Sooner or later. ARRae-20000411
|
|
|
|
# GUI_defaults.C \
|
|
|
|
# GUI_initialize.C \
|
|
|
|
# GUI_postlyxrc.C \
|
|
|
|
# GUI_runtime.C \
|
|
|
|
# GUI_applymenu.C
|
|
|
|
|
|
|
|
# just copied from old lyx repository
|
|
|
|
dist-hook:
|
|
|
|
for subdir in $(LYXDATADIRS) ; do \
|
|
|
|
test -d $(distdir)/$$subdir \
|
|
|
|
|| mkdir $(distdir)/$$subdir \
|
|
|
|
|| exit 1; \
|
|
|
|
chmod 777 $(distdir)/$$subdir; \
|
|
|
|
list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
|
|
|
|
echo $$list ; \
|
|
|
|
for fil in $$list ; do \
|
|
|
|
cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
|
|
|
|
done ; \
|
|
|
|
done
|