Changeset 222

Show
Ignore:
Timestamp:
05/25/06 03:03:15 (18 years ago)
Author:
pieterpalmers
Message:

- makefile rework: move headers in noinst, makes life easier with kdevelop

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/libfreebob-2.0/libfreebob/Makefile.am

    r159 r222  
    1818 
    1919libfreebobincludedir = $(includedir)/libfreebob 
    20 libfreebobinclude_HEADERS = freebob.h freebob_streaming.h xmlparser.h 
     20libfreebobinclude_HEADERS = freebob.h freebob_streaming.h xmlparser.h freebob_bounce.h 
     21 
  • branches/libfreebob-2.0/src/debugmodule/Makefile.am

    r125 r222  
    1818noinst_LTLIBRARIES = libdebugmodule.la 
    1919 
     20noinst_HEADERS =                                \ 
     21                debugmodule.h            
    2022 
    2123libdebugmodule_la_SOURCES =             \ 
    22                 debugmodule.h           \ 
    2324                debugmodule.cpp          
    2425 
  • branches/libfreebob-2.0/src/libfreebobavc/Makefile.am

    r172 r222  
    1818noinst_LTLIBRARIES = libfreebobavc.la 
    1919 
     20noinst_HEADERS =                                \ 
     21                avc_connect.h                           \ 
     22                avc_definitions.h                       \ 
     23                avc_extended_cmd_generic.h              \ 
     24                avc_extended_plug_info.h                \ 
     25                avc_extended_stream_format.h            \ 
     26                avc_extended_subunit_info.h             \ 
     27                avc_generic.h                           \ 
     28                avc_plug_info.h                         \ 
     29                avc_signal_source.h                     \ 
     30                avc_subunit_info.h                      \ 
     31                avc_unit_info.h                         \ 
     32                ieee1394service.h                       \ 
     33                serialize.h 
     34 
    2035libfreebobavc_la_SOURCES =                              \ 
    2136                avc_connect.cpp                         \ 
    22                 avc_connect.h                           \ 
    2337                avc_definitions.cpp                     \ 
    24                 avc_definitions.h                       \ 
    2538                avc_extended_cmd_generic.cpp            \ 
    26                 avc_extended_cmd_generic.h              \ 
    2739                avc_extended_plug_info.cpp              \ 
    28                 avc_extended_plug_info.h                \ 
    2940                avc_extended_stream_format.cpp          \ 
    30                 avc_extended_stream_format.h            \ 
    31                 avc_extended_subunit_info.h             \ 
    3241                avc_extended_subunit_info.cpp           \ 
    3342                avc_generic.cpp                         \ 
    34                 avc_generic.h                           \ 
    3543                avc_plug_info.cpp                       \ 
    36                 avc_plug_info.h                         \ 
    3744                avc_signal_source.cpp                   \ 
    38                 avc_signal_source.h                     \ 
    3945                avc_subunit_info.cpp                    \ 
    40                 avc_subunit_info.h                      \ 
    4146                avc_unit_info.cpp                       \ 
    42                 avc_unit_info.h                         \ 
    4347                ieee1394service.cpp                     \ 
    44                 ieee1394service.h                       \ 
    45                 serialize.cpp                           \ 
    46                 serialize.h 
     48                serialize.cpp                            
    4749 
    4850INCLUDES = $(LIBRAW1394_CFLAGS) $(LIBIEC61883_CFLAGS) $(LIBAVC1394_CFLAGS) \ 
  • branches/libfreebob-2.0/src/libfreebobstreaming/Makefile.am

    r199 r222  
    1818 
    1919noinst_LTLIBRARIES = libfreebobstreaming.la 
     20noinst_HEADERS =                                \ 
     21        cip.h freebob_connections.h messagebuffer.h \ 
     22        ringbuffer.h freebob_streaming_private.h freebob_debug.h thread.h \ 
     23        watchdog.h handlers.h 
    2024 
    2125libfreebobstreaming_la_SOURCES =                        \ 
    2226        cip.c freebob_streaming.c messagebuffer.c \ 
    2327        freebob_connections.c ringbuffer.c thread.c \ 
    24         cip.h freebob_connections.h messagebuffer.h \ 
    25         ringbuffer.h freebob_streaming_private.h freebob_debug.h thread.h \ 
    26         watchdog.c watchdog.h handlers.c handlers.h 
     28        watchdog.c handlers.c  
    2729 
    2830INCLUDES = $(LIBRAW1394_CFLAGS) $(LIBIEC61883_CFLAGS) -I$(top_srcdir)/src \ 
  • branches/libfreebob-2.0/src/libstreaming/AmdtpStreamProcessor.cpp

    r221 r222  
    162162                 
    163163                // signal underrun 
    164                 m_xruns++; 
    165  
    166                 // not nescessary (xrun handling resets this) 
    167                 // but pre-distort this anyway 
    168                 m_framecounter-=nevents; 
     164//              m_xruns++; 
    169165 
    170166                retval=RAW1394_ISO_DEFER; 
  • branches/libfreebob-2.0/src/libstreaming/Makefile.am

    r221 r222  
    1818 
    1919noinst_LTLIBRARIES = libstreaming.la 
     20noinst_HEADERS =                                \ 
     21        messagebuffer.h cip.h  \ 
     22        debug.h \ 
     23        FreebobPosixThread.h \ 
     24        FreebobThread.h \ 
     25        FreebobAtomic.h   \ 
     26        IsoHandler.h \ 
     27        IsoHandlerManager.h \ 
     28        IsoStream.h \ 
     29        IsoStreamManager.h \ 
     30        ringbuffer.h \ 
     31        PacketBuffer.h \ 
     32        PortManager.h \ 
     33        Port.h \ 
     34        StreamProcessor.h \ 
     35        StreamProcessorManager.h \ 
     36        AmdtpPortInfo.h \ 
     37        AmdtpPort.h \ 
     38        AmdtpStreamProcessor.h \ 
     39        StreamRunner.h 
    2040 
    2141libstreaming_la_SOURCES =       \ 
    22         messagebuffer.c messagebuffer.h cip.h cip.c \ 
    23         debug.h \ 
    24         FreebobPosixThread.cpp  FreebobPosixThread.h \ 
    25         FreebobThread.h \ 
    26         FreebobAtomic.h   \ 
     42        messagebuffer.c cip.c \ 
     43        FreebobPosixThread.cpp \ 
    2744        freebob_streaming.cpp \ 
    2845        IsoHandler.cpp \ 
    29         IsoHandler.h \ 
    3046        IsoHandlerManager.cpp \ 
    31         IsoHandlerManager.h \ 
    3247        IsoStream.cpp \ 
    33         IsoStream.h \ 
    3448        IsoStreamManager.cpp \ 
    35         IsoStreamManager.h \ 
    36         ringbuffer.c ringbuffer.h \ 
    37         PacketBuffer.cpp PacketBuffer.h \ 
     49        PacketBuffer.cpp \ 
    3850        PortManager.cpp \ 
    39         PortManager.h \ 
    4051        Port.cpp \ 
    41         Port.h \ 
    4252        StreamProcessor.cpp \ 
    43         StreamProcessor.h \ 
    4453        StreamProcessorManager.cpp \ 
    45         StreamProcessorManager.h \ 
    46         AmdtpPortInfo.cpp AmdtpPortInfo.h \ 
     54        AmdtpPortInfo.cpp \ 
    4755        AmdtpPort.cpp \ 
    48         AmdtpPort.h \ 
    4956        AmdtpStreamProcessor.cpp \ 
    50         AmdtpStreamProcessor.h \ 
    51         StreamRunner.cpp StreamRunner.h 
     57        StreamRunner.cpp 
    5258 
    5359INCLUDES = $(LIBRAW1394_CFLAGS) $(LIBIEC61883_CFLAGS) -I$(top_srcdir)/src \ 
  • branches/libfreebob-2.0/src/Makefile.am

    r221 r222  
    2424 
    2525lib_LTLIBRARIES = libfreebob.la 
     26noinst_HEADERS =                                \ 
     27        configrom.h                                     \ 
     28        csr1212.h                                       \ 
     29        devicemanager.h                                 \ 
     30        fbtypes.h                                       \ 
     31        bebob_light/bebob_light_avdevice.h              \ 
     32        bebob_light/bebob_light_avdevicesubunit.h        
     33        bebob_light/bebob_light_avplug.h                \ 
     34#       bebob/bebob_avdevice.h                          \ 
     35#       bebob/bebob_avdevice_subunit.h                  \ 
     36#       bebob/bebob_avplug.h                            \ 
     37#       bebob/bebob_functionblock.h                     \ 
     38#       bounce/bounce_avdevice.h                        \ 
     39#       motu/motu_avdevice.h                             
    2640 
    2741libfreebob_la_SOURCES =                                 \ 
    28         configrom.h                                     \ 
    2942        configrom.cpp                                   \ 
    30         csr1212.h                                       \ 
    3143        csr1212.c                                       \ 
    32         devicemanager.h                                 \ 
    3344        devicemanager.cpp                               \ 
    34         fbtypes.h                                       \ 
    3545        freebob.cpp                                     \ 
    3646        xmlparser.c                                     \ 
    37         bebob_light/bebob_light_avdevice.h              \ 
    3847        bebob_light/bebob_light_avdevice.cpp            \ 
    39         bebob_light/bebob_light_avdevicesubunit.h       \ 
    4048        bebob_light/bebob_light_avdevicesubunit.cpp     \ 
    41         bebob_light/bebob_light_avplug.h                \ 
    4249        bebob_light/bebob_light_avplug.cpp               
    43 #       bebob/bebob_avdevice.h                          \ 
    4450#       bebob/bebob_avdevice.cpp                        \ 
    4551#       bebob/bebob_avdevice_xml.cpp                    \ 
    46 #       bebob/bebob_avdevice_subunit.h                  \ 
    4752#       bebob/bebob_avdevice_subunit.cpp                \ 
    48 #       bebob/bebob_avplug.h                            \ 
    4953#       bebob/bebob_avplug.cpp                          \ 
    5054#       bebob/bebob_avplug_xml.cpp                      \ 
    51 #       bebob/bebob_functionblock.h                     \ 
    5255#       bebob/bebob_functionblock.cpp                   \ 
    53 #       bounce/bounce_avdevice.h                        \ 
    5456#       bounce/bounce_avdevice.cpp                      \ 
    55 #       motu/motu_avdevice.h                            \ 
    5657#       motu/motu_avdevice.cpp 
    5758