Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/dvi
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <ssp@src.gnome.org>2004-12-22 16:34:36 (GMT)
committer Søren Sandmann Pedersen <ssp@src.gnome.org>2004-12-22 16:34:36 (GMT)
commit8e30e595ac2d7f976bfab060dbc03595358431fb (patch)
tree1bcb872e258250d007ff360e3a07a719ec872ade /dvi
parent08d37ab642e8cb80774a87270fd6a3f9fab783fb (diff)
Add Makefile.am
Diffstat (limited to 'dvi')
-rw-r--r--dvi/Makefile.am27
-rw-r--r--dvi/dvilib/Makefile.am20
2 files changed, 47 insertions, 0 deletions
diff --git a/dvi/Makefile.am b/dvi/Makefile.am
new file mode 100644
index 0000000..7694744
--- /dev/null
+++ b/dvi/Makefile.am
@@ -0,0 +1,27 @@
+SUBDIRS = dvilib
+
+INCLUDES = \
+ -Idvilib \
+ $(DVI_CFLAGS) \
+ -I$(top_srcdir)
+
+bin_PROGRAMS=dviviewer
+
+dviviewer_SOURCES = \
+ main.cc \
+ \
+ painter.hh \
+ painter.cc \
+ \
+ font.hh \
+ font.cc \
+ \
+ view.hh \
+ view.cc \
+ \
+ model.hh \
+ model.cc
+
+dviviewer_LDADD = \
+ $(top_builddir)/dvi/dvilib/libdvilib.a \
+ $(GTK_LIBS)
diff --git a/dvi/dvilib/Makefile.am b/dvi/dvilib/Makefile.am
new file mode 100644
index 0000000..5331ab0
--- /dev/null
+++ b/dvi/dvilib/Makefile.am
@@ -0,0 +1,20 @@
+noinst_LIBRARIES = libdvilib.a
+
+libdvilib_a_SOURCES = \
+ dl-dvi-file.cc \
+ dl-dvi-fontdefinition.cc \
+ dl-dvi-parser.cc \
+ dl-dvi-program.cc \
+ dl-dvi-runtime.cc \
+ dl-loader.cc \
+ dl-pkfont.cc \
+ dl-vffont.cc \
+ \
+ dl-dvi-file.hh \
+ dl-dvi-fontdefinition.hh \
+ dl-dvi-parser.hh \
+ dl-dvi-runtime.hh \
+ dl-font.hh \
+ dl-loader.hh \
+ dl-pkfont.hh \
+ dl-vffont.hh