~ubuntu-branches/ubuntu/raring/ecasound2.2/raring

« back to all changes in this revision

Viewing changes to kvutils/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2009-11-02 18:22:35 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091102182235-4ngh7699dmkgonyu
Tags: 2.7.0-1
* New upstream release.
* Depend on libreadline-dev instead of libreadline5-dev by request of
  Mattias Klose. It's now libreadline6-dev. (closes: #553748)
* Update menu file to use section Applications/ instead of Apps/.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
INCLUDES = $(ECA_S_EXTRA_CPPFLAGS)
23
23
 
24
 
kvutil_sources =        kvu_com_line.cpp \
 
24
kvutil_sources =        kvu_dbc.cpp \
 
25
                        kvu_debug.cpp \
 
26
                        kvu_com_line.cpp \
25
27
                        kvu_fd_io.cpp \
26
28
                        kvu_locks.cpp \
27
29
                        kvu_message_item.cpp \
31
33
                        kvu_temporary_file_directory.cpp \
32
34
                        kvu_threads.cpp \
33
35
                        kvu_utils.cpp \
 
36
                        kvu_timestamp.cpp \
34
37
                        kvu_value_queue.cpp
35
38
 
36
39
kvutil_headers =        kvu_dbc.h \
 
40
                        kvu_debug.h \
37
41
                        kvu_definition_by_contract.h \
38
42
                        kvu_com_line.h \
39
43
                        kvu_fd_io.h \
 
44
                        kvu_inttypes.h \
40
45
                        kvu_locks.h \
41
46
                        kvu_message_item.h \
 
47
                        kvu_message_queue.h \
42
48
                        kvu_numtostr.h \
43
49
                        kvu_object_queue.h \
44
50
                        kvu_procedure_timer.h \
46
52
                        kvu_temporary_file_directory.h \
47
53
                        kvu_threads.h \
48
54
                        kvu_utils.h \
49
 
                        kvu_value_queue.h \
50
 
                        kvu_inttypes.h
 
55
                        kvu_timestamp.h \
 
56
                        kvu_value_queue.h
51
57
 
52
58
libkvutils_la_SOURCES = $(kvutil_sources) $(kvutil_headers)
53
59
libkvutils_la_LDFLAGS = -version-info @LIBKVUTILS_VERSION@:0:@LIBKVUTILS_VERSION_AGE@ -static
72
78
uninstall-local:
73
79
        cd $(DESTDIR)$(includedir)/kvutils && \
74
80
        rm -f $(kvutil_headers)
75
 
        rmdir --ignore-fail-on-non-empty $(DESTDIR)$(includedir)/kvutils
 
81
        rmdir $(DESTDIR)$(includedir)/kvutils || echo "Skipping non-empty directory"