Changeset 4
- Timestamp:
- 04/10/06 09:50:46 (3 years ago)
- Location:
- trunk
- Files:
-
- 7 added
- 2 modified
-
src/Document.cxx (added)
-
src/Document.h (added)
-
src/DocumentIndex.cxx (added)
-
src/DocumentIndex.h (added)
-
src/Makefile.am (modified) (1 diff)
-
src/epdfview.h (added)
-
tests/DocumentTest.cxx (added)
-
tests/DocumentTest.h (added)
-
tests/Makefile.am (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Makefile.am
r2 r4 1 1 # Process this file with automake to produce a Makefile.in file. 2 noinst_LIBRARIES = libepdfview.a 2 3 4 libepdfview_a_SOURCES = \ 5 Document.cxx \ 6 Document.h \ 7 DocumentIndex.cxx \ 8 DocumentIndex.h \ 9 epdfview.h \ 10 gettext.h 11 12 libepdfview_a_CXXFLAGS = \ 13 $(GLIB_CFLAGS) -
trunk/tests/Makefile.am
r3 r4 4 4 5 5 test_epdfview_SOURCES = \ 6 DocumentTest.cxx \ 7 DocumentTest.h \ 6 8 main.cxx 7 9 … … 11 13 $(CPPUNIT_CFLAGS) 12 14 13 test_epdfview_LDFLAGS = \14 $(GLIB_LIBS) \15 test_epdfview_LDFLAGS = \ 16 $(GLIB_LIBS) \ 15 17 $(CPPUNIT_LIBS) 18 19 test_epdfview_LDADD = $(top_builddir)/src/libepdfview.a
