summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authordeva <deva>2006-03-05 18:23:38 +0000
committerdeva <deva>2006-03-05 18:23:38 +0000
commit19705870695faa1345f5977ef2fef9d54ce7e2c9 (patch)
treed040a524bd0277fd18bd911ec40ebd8fbc7e058b /lib
parent9687f16fab9f2f718067e451012581571ee38847 (diff)
*** empty log message ***
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am47
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
new file mode 100644
index 0000000..f2293d1
--- /dev/null
+++ b/lib/Makefile.am
@@ -0,0 +1,47 @@
+AM_CXXFLAGS := $(CXXFLAGS) $(EXTRA_CXXFLAGS)
+
+lib_LTLIBRARIES = libmiav.la
+
+libmiav_la_SOURCES = \
+ aa_socket.cc \
+ daemon.cc \
+ file.cc \
+ frame.cc \
+ info.cc \
+ info_simple.cc \
+ jpeg_mem_dest.cc \
+ miav_config.cc \
+ mutex.cc \
+ network.cc \
+ semaphore.cc \
+ socket.cc \
+ thread.cc \
+ threadsafe_queue.cc \
+ threadsafe_queue_fifo.cc \
+ threadsafe_queue_priority.cc \
+ util.cc
+
+EXTRA_DIST = \
+ aa_socket.h \
+ config.h \
+ daemon.h \
+ dv.h \
+ file.h \
+ frame.h \
+ frame_stream.h \
+ info.h \
+ info_simple.h \
+ jpeg_mem_dest.h \
+ miav_config.h \
+ mutex.h \
+ network.h \
+ package.h \
+ queue.h \
+ semaphore.h \
+ socket.h \
+ thread.h \
+ threadsafe_queue.h \
+ threadsafe_queue_fifo.h \
+ threadsafe_queue_priority.h \
+ util.h
+