Changeset 4 for trunk/src/Makefile.am

Show
Ignore:
Timestamp:
04/10/06 09:50:46 (3 years ago)
Author:
jordi
Message:

Added the first test that checks that an empty document returns sane values. In order to make the test compile and run I had to add an static library called libepfview.a that contains the required classes (Document and DocumentIndex?) for the test.

I also added the library to the test's Makefile.am LDADD variable.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/Makefile.am

    r2 r4  
    11# Process this file with automake to produce a Makefile.in file. 
     2noinst_LIBRARIES = libepdfview.a 
    23 
     4libepdfview_a_SOURCES = \ 
     5    Document.cxx        \ 
     6    Document.h          \ 
     7    DocumentIndex.cxx   \ 
     8    DocumentIndex.h     \ 
     9    epdfview.h          \ 
     10    gettext.h 
     11 
     12libepdfview_a_CXXFLAGS =    \ 
     13    $(GLIB_CFLAGS)