~ubuntu-branches/debian/lenny/libgsf/lenny

« back to all changes in this revision

Viewing changes to gsf/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): J.H.M. Dassen (Ray)
  • Date: 2004-06-13 13:57:29 UTC
  • Revision ID: james.westby@ubuntu.com-20040613135729-3rn08f4l9in3kfzw
Tags: upstream-1.9.1
ImportĀ upstreamĀ versionĀ 1.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if PLATFORM_WIN32
 
2
no_undefined = -no-undefined
 
3
endif
 
4
 
 
5
if OS_WIN32
 
6
 
 
7
install-libtool-import-lib:
 
8
        $(INSTALL) .libs/libgsf-1.dll.a $(DESTDIR)$(libdir)
 
9
 
 
10
uninstall-libtool-import-lib:
 
11
        -rm $(DESTDIR)$(libdir)/libgsf-1.dll.a
 
12
else
 
13
install-libtool-import-lib:
 
14
uninstall-libtool-import-lib:
 
15
endif
 
16
 
 
17
INCLUDES = -I$(top_srcdir) $(LIBGSF_CFLAGS)
 
18
 
 
19
lib_LTLIBRARIES = libgsf-1.la
 
20
 
 
21
libgsf_1_la_LIBADD  = $(LIBGSF_LIBS) $(Z_LIBS) $(BZ2_LIBS)
 
22
libgsf_1_la_LDFLAGS = -version-info $(VERSION_INFO) $(no_undefined)
 
23
libgsf_1_la_SOURCES =           \
 
24
        gsf-utils.c             \
 
25
        gsf-libxml.c            \
 
26
        gsf-msole-impl.h        \
 
27
        gsf-msole-utils.c       \
 
28
        gsf-timestamp.c         \
 
29
        gsf-zip-impl.h          \
 
30
        gsf-zip-utils.c         \
 
31
        \
 
32
        gsf-input.c             \
 
33
        gsf-input-memory.c      \
 
34
        gsf-input-stdio.c       \
 
35
        gsf-input-textline.c    \
 
36
        gsf-input-gzip.c        \
 
37
        gsf-input-bzip.c        \
 
38
        gsf-input-iochannel.c   \
 
39
        \
 
40
        gsf-infile.c            \
 
41
        gsf-infile-stdio.c      \
 
42
        gsf-infile-msole.c      \
 
43
        gsf-infile-zip.c        \
 
44
        \
 
45
        gsf-output.c            \
 
46
        gsf-output-iochannel.c  \
 
47
        gsf-output-memory.c     \
 
48
        gsf-output-stdio.c      \
 
49
        gsf-output-gzip.c       \
 
50
        gsf-output-bzip.c       \
 
51
        \
 
52
        gsf-outfile.c           \
 
53
        gsf-outfile-stdio.c     \
 
54
        gsf-outfile-msole.c     \
 
55
        gsf-outfile-zip.c       \
 
56
        \
 
57
        gsf-shared-memory.c     \
 
58
        gsf-shared-memory.h     \
 
59
        gsf-structured-blob.c
 
60
#       gsf-output-transaction.c        \
 
61
#       gsf-command-context.c   \
 
62
#       gsf-io-context.c
 
63
 
 
64
libgsf_1_includedir = $(includedir)/libgsf-1/gsf
 
65
libgsf_1_include_HEADERS =      \
 
66
        gsf.h                   \
 
67
        gsf-utils.h             \
 
68
        gsf-libxml.h            \
 
69
        gsf-doc-meta-data.h     \
 
70
        gsf-impl-utils.h        \
 
71
        gsf-msole-utils.h       \
 
72
        gsf-timestamp.h         \
 
73
        \
 
74
        gsf-input.h             \
 
75
        gsf-input-impl.h                \
 
76
        gsf-input-memory.h      \
 
77
        gsf-input-stdio.h       \
 
78
        gsf-input-textline.h    \
 
79
        gsf-input-gzip.h        \
 
80
        gsf-input-bzip.h        \
 
81
        gsf-input-iochannel.h   \
 
82
        \
 
83
        gsf-infile.h            \
 
84
        gsf-infile-impl.h       \
 
85
        gsf-infile-stdio.h      \
 
86
        gsf-infile-msole.h      \
 
87
        gsf-infile-zip.h        \
 
88
        \
 
89
        gsf-output.h            \
 
90
        gsf-output-impl.h       \
 
91
        gsf-output-iochannel.h  \
 
92
        gsf-output-memory.h     \
 
93
        gsf-output-stdio.h      \
 
94
        gsf-output-gzip.h       \
 
95
        gsf-output-bzip.h       \
 
96
        \
 
97
        gsf-outfile.h           \
 
98
        gsf-outfile-impl.h      \
 
99
        gsf-outfile-stdio.h     \
 
100
        gsf-outfile-msole.h     \
 
101
        gsf-outfile-zip.h       \
 
102
        \
 
103
        gsf-structured-blob.h
 
104
#       gsf-command-context.h   \
 
105
#       gsf-io-context.h
 
106
 
 
107
install-data-local: install-libtool-import-lib
 
108
 
 
109
uninstall-local: uninstall-libtool-import-lib