Changeset 1049:1196fa3d6392 in roaraudio


Ignore:
Timestamp:
12/23/08 23:22:14 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

include plugins/ao on normal install

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r866 r1049  
    11include Makefile.conf 
    22 
    3 SUBDIRS=libroar libroardsp $(subdir_libroaresd) roard roarclients doc $(subdir_roarfish) $(subdir_libroaryiff) $(subdir_libroarpulse) $(subdir_libroararts) 
     3SUBDIRS=libroar libroardsp $(subdir_libroaresd) roard roarclients doc $(subdir_roarfish) $(subdir_libroaryiff) $(subdir_libroarpulse) $(subdir_libroararts) $(subdir_plugins_ao) 
    44 
    55all: 
     
    2323        sh -c 'for file in include/roar* include/lib*; do cp $(cp_v) -r $$file $(PREFIX_INC)/; done' 
    2424        cd doc; make install; cd .. 
     25        if [ "$(subdir_plugins_ao)" != '' ]; then cd $(subdir_plugins_ao); make install; cd ../..; fi 
    2526semi-install: prep-install-dirs 
    2627        sh -c 'for file in lib/roar*;    do ln -fs `pwd`/$$file $(PREFIX_BIN)/; done' 
     
    2829        sh -c 'for file in include/roar* include/lib*; do ln -fs `pwd`/$$file $(PREFIX_INC)/; done' 
    2930        cd doc; make semi-install; cd .. 
     31        if [ "$(subdir_plugins_ao)" != '' ]; then cd $(subdir_plugins_ao); make semi-install; cd ../..; fi 
  • configure

    r1034 r1049  
    228228 if test_lib "$name" $LIBS "$@" 
    229229 then 
     230  subdir_var='subdir_'"`echo $subdir | tr / _`" 
    230231  echo "#define $def"            >&3 
    231232  [ "$subdir" != '' ] && \ 
    232    echo "subdir_$subdir=$subdir" >&4 
     233   echo "$subdir_var=$subdir" >&4 
    233234  echo "lib_$lib=$LIBS" >&4 
    234235 else 
     
    343344#                #define                 subdir       name          -lxxx      -- header 
    344345test_lib_defmake ROAR_HAVE_ESD           libroaresd   EsounD        esd        -- esd.h 
    345 test_lib_defmake ROAR_HAVE_LIBAO         %            libao         ao         -- ao/ao.h ao/plugin.h 
     346test_lib_defmake ROAR_HAVE_LIBAO         plugins/ao   libao         ao         -- ao/ao.h ao/plugin.h 
    346347test_lib_defmake ROAR_HAVE_LIBVORBIS     %            libvorbis     vorbis     -- vorbis/codec.h 
    347348test_lib_defmake ROAR_HAVE_LIBVORBISFILE %            libvorbisfile vorbisfile -- vorbis/vorbisfile.h 
  • plugins/ao/Makefile

    r0 r1049  
    88install: libroar.so 
    99        cp libroar.so ${INSTALL_DIR} 
     10semi-install: libroar.so 
     11        ln -s `pwd`/libroar.so ${INSTALL_DIR} 
    1012 
    1113libroar.so: ao_roar.c 
Note: See TracChangeset for help on using the changeset viewer.