mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-02 09:01:48 -05:00
Merge branch 'master' of upstream
This commit is contained in:
commit
3941d472b2
37 changed files with 239 additions and 145 deletions
39
Makefile
39
Makefile
|
|
@ -1,23 +1,46 @@
|
||||||
VERSION = 1.0.17rc1
|
VERSION = 1.0.17
|
||||||
TOP = .
|
TOP = .
|
||||||
SUBDIRS = ac3dec as10k1 envy24control hdsploader hdspconf hdspmixer \
|
SUBDIRS = ac3dec as10k1 envy24control hdsploader hdspconf hdspmixer \
|
||||||
mixartloader pcxhrloader rmedigicontrol sb16_csp seq sscape_ctl us428control \
|
mixartloader pcxhrloader rmedigicontrol sb16_csp seq sscape_ctl \
|
||||||
usx2yloader vxloader echomixer ld10k1 qlo10k1
|
us428control usx2yloader vxloader echomixer ld10k1 qlo10k1
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@for i in $(SUBDIRS); do cd $(TOP)/$$i; ./gitcompile $(GITCOMPILE_ARGS); cd ..; make -C $$i; done
|
@for i in $(SUBDIRS); do \
|
||||||
|
cd $(TOP)/$$i; echo $(TOP)/$$i; \
|
||||||
|
./gitcompile $(GITCOMPILE_ARGS) || exit 1; \
|
||||||
|
cd ..; make -C $$i || exit 1; \
|
||||||
|
done
|
||||||
|
|
||||||
|
configure:
|
||||||
|
@for i in $(SUBDIRS); do \
|
||||||
|
cd $(TOP)/$$i; echo $(TOP)/$$i; \
|
||||||
|
if [ -x ./configure ]; then \
|
||||||
|
./configure $(CONFIGURE_ARGS) || exit 1; \
|
||||||
|
else \
|
||||||
|
make CONFIGURE_ARGS="$CONFIGURE_ARGS" configure || exit 1; \
|
||||||
|
fi; \
|
||||||
|
cd ..; make -C $$i || exit 1; \
|
||||||
|
done
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@for i in $(SUBDIRS); do make -C $$i DESTDIR=$(DESTDIR) install; done
|
@for i in $(SUBDIRS); do \
|
||||||
|
make -C $$i DESTDIR=$(DESTDIR) install || exit 1; \
|
||||||
|
done
|
||||||
|
|
||||||
alsa-dist:
|
alsa-dist:
|
||||||
@echo $(VERSION) >> $(TOP)/version
|
@echo $(VERSION) >> $(TOP)/version
|
||||||
@mkdir -p $(TOP)/distdir
|
@mkdir -p $(TOP)/distdir
|
||||||
@for i in $(SUBDIRS); do cd $(TOP)/$$i; ./gitcompile $(GITCOMPILE_ARGS); cd ..; make -C $$i alsa-dist; done
|
@for i in $(SUBDIRS); do \
|
||||||
|
cd $(TOP)/$$i; echo $(TOP)/$$i; \
|
||||||
|
./gitcompile $(GITCOMPILE_ARGS) || exit 1; \
|
||||||
|
cd ..; make -C $$i alsa-dist || exit 1; \
|
||||||
|
done
|
||||||
|
@cp Makefile gitcompile distdir
|
||||||
@mv distdir alsa-tools-$(VERSION)
|
@mv distdir alsa-tools-$(VERSION)
|
||||||
@tar --create --verbose --file=- alsa-tools-$(VERSION) | bzip2 -c -9 > alsa-tools-$(VERSION).tar.bz2
|
@tar --create --verbose --file=- alsa-tools-$(VERSION) \
|
||||||
|
| bzip2 -c -9 > alsa-tools-$(VERSION).tar.bz2
|
||||||
@mv alsa-tools-$(VERSION) distdir
|
@mv alsa-tools-$(VERSION) distdir
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf *~ distdir
|
rm -rf *~ distdir
|
||||||
@for i in $(SUBDIRS); do make -C $$i clean; done
|
@for i in $(SUBDIRS); do make -C $$i clean || exit 1; done
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,8 @@ ac3dec_SOURCES = ac3dec.c output.c ac3spdif.c
|
||||||
ac3dec_DEPENDENCIES = libac3/libac3.a
|
ac3dec_DEPENDENCIES = libac3/libac3.a
|
||||||
|
|
||||||
|
|
||||||
EXTRA_DIST = README Changelog TODO plot_spectrum.m autogen.sh depcomp
|
EXTRA_DIST = gitcompile README Changelog TODO plot_spectrum.m autogen.sh \
|
||||||
|
depcomp
|
||||||
|
|
||||||
SUBDIRS = libac3 tools test .
|
SUBDIRS = libac3 tools test .
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
autoheader
|
autoheader || exit 1
|
||||||
automake --add-missing --copy --foreign
|
automake --add-missing --copy --foreign || exit 1
|
||||||
touch depcomp
|
touch depcomp || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
./configure $*
|
./configure $* || exit 1
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,30 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
if test -z "$AUTOMAKE_DIR" ; then
|
||||||
if test -d /usr/local/share/automake; then
|
if test -d /usr/local/share/automake; then
|
||||||
AUTOMAKE_DIR=/usr/local/share/automake
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
fi
|
fi
|
||||||
if test -d /usr/share/automake; then
|
if test -d /usr/share/automake; then
|
||||||
AUTOMAKE_DIR="/usr/share/automake"
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
fi
|
fi
|
||||||
|
if test -z "$AUTOMAKE_DIR" ; then
|
||||||
|
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in install-sh mkinstalldirs missing; do
|
for f in install-sh mkinstalldirs missing; do
|
||||||
cp -av $AUTOMAKE_DIR/$f .
|
cp -av $AUTOMAKE_DIR/$f . || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing --copy
|
automake --foreign --add-missing --copy || exit 1
|
||||||
touch depcomp
|
touch depcomp || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if test -z "$GITCOMPILE_NO_MAKE" ; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ bin_PROGRAMS = echomixer
|
||||||
man_MANS =
|
man_MANS =
|
||||||
echomixer_SOURCES = echomixer.c
|
echomixer_SOURCES = echomixer.c
|
||||||
echomixer_LDFLAGS = @ECHOMIXER_LIBS@
|
echomixer_LDFLAGS = @ECHOMIXER_LIBS@
|
||||||
EXTRA_DIST = configure.in-gtk1 configure.in-gtk2
|
EXTRA_DIST = gitcompile configure.in-gtk1 configure.in-gtk2
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,30 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
if test -d /usr/local/share/automake; then
|
if test -d /usr/local/share/automake; then
|
||||||
AUTOMAKE_DIR=/usr/local/share/automake
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
fi
|
fi
|
||||||
if test -d /usr/share/automake; then
|
if test -d /usr/share/automake; then
|
||||||
AUTOMAKE_DIR="/usr/share/automake"
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
fi
|
fi
|
||||||
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
|
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in install-sh mkinstalldirs missing; do
|
for f in install-sh mkinstalldirs missing; do
|
||||||
cp -av $AUTOMAKE_DIR/$f .
|
cp -av $AUTOMAKE_DIR/$f . || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --add-missing --copy
|
automake --add-missing --copy || exit 1
|
||||||
touch depcomp
|
touch depcomp || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
@ -5,8 +5,9 @@ envy24control_SOURCES = envy24control.c envy24control.h levelmeters.c midi.c \
|
||||||
mixer.c patchbay.c hardware.c driverevents.c volume.c \
|
mixer.c patchbay.c hardware.c driverevents.c volume.c \
|
||||||
profiles.c profiles.h midi.h config.c config.h
|
profiles.c profiles.h midi.h config.c config.h
|
||||||
envy24control_LDFLAGS = @ENVY24CONTROL_LIBS@
|
envy24control_LDFLAGS = @ENVY24CONTROL_LIBS@
|
||||||
EXTRA_DIST = envy24control.1 depcomp configure.in-gtk1 configure.in-gtk2 \
|
EXTRA_DIST = gitcompile envy24control.1 depcomp configure.in-gtk1 \
|
||||||
strstr_icase_blank.c new_process.c README.profiles
|
configure.in-gtk2 strstr_icase_blank.c new_process.c \
|
||||||
|
README.profiles
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,30 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
if test -d /usr/local/share/automake; then
|
if test -d /usr/local/share/automake; then
|
||||||
AUTOMAKE_DIR=/usr/local/share/automake
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
fi
|
fi
|
||||||
if test -d /usr/share/automake; then
|
if test -d /usr/share/automake; then
|
||||||
AUTOMAKE_DIR="/usr/share/automake"
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
fi
|
fi
|
||||||
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
|
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in install-sh mkinstalldirs missing; do
|
for f in install-sh mkinstalldirs missing; do
|
||||||
cp -av $AUTOMAKE_DIR/$f .
|
cp -av $AUTOMAKE_DIR/$f . || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing --copy
|
automake --foreign --add-missing --copy || exit 1
|
||||||
touch depcomp
|
touch depcomp || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if test -z "$GITCOMPILE_NO_MAKE" ; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
EXTRA_DIST = hdspconf.desktop depcomp
|
EXTRA_DIST = gitcompile hdspconf.desktop depcomp
|
||||||
SUBDIRS = src pixmaps
|
SUBDIRS = src pixmaps
|
||||||
|
|
||||||
desktopdir = $(DESKTOP_DIR)
|
desktopdir = $(DESKTOP_DIR)
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,30 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
if test -d /usr/local/share/automake; then
|
if test -d /usr/local/share/automake; then
|
||||||
AUTOMAKE_DIR=/usr/local/share/automake
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
fi
|
fi
|
||||||
if test -d /usr/share/automake; then
|
if test -d /usr/share/automake; then
|
||||||
AUTOMAKE_DIR="/usr/share/automake"
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
fi
|
fi
|
||||||
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
|
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in install-sh mkinstalldirs missing; do
|
for f in install-sh mkinstalldirs missing; do
|
||||||
cp -av $AUTOMAKE_DIR/$f .
|
cp -av $AUTOMAKE_DIR/$f . || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing --copy
|
automake --foreign --add-missing --copy || exit 1
|
||||||
touch depcomp
|
touch depcomp || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ AM_CFLAGS = -DDATAPATH=\"$(datadir)/alsa/firmware/$(MYNAME)\"
|
||||||
|
|
||||||
hdsploader_SOURCES = hdsploader.c
|
hdsploader_SOURCES = hdsploader.c
|
||||||
|
|
||||||
EXTRA_DIST = depcomp
|
EXTRA_DIST = gitcompile depcomp
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/$(MYNAME)
|
@rm -rf ../distdir/$(MYNAME)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing
|
automake --foreign --add-missing || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if test -z "$GITCOMPILE_NO_MAKE"; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
EXTRA_DIST = hdspmixer.desktop depcomp
|
EXTRA_DIST = gitcompile hdspmixer.desktop depcomp
|
||||||
SUBDIRS = src pixmaps
|
SUBDIRS = src pixmaps
|
||||||
|
|
||||||
desktopdir = $(DESKTOP_DIR)
|
desktopdir = $(DESKTOP_DIR)
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,30 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
if test -d /usr/local/share/automake; then
|
if test -d /usr/local/share/automake; then
|
||||||
AUTOMAKE_DIR=/usr/local/share/automake
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
fi
|
fi
|
||||||
if test -d /usr/share/automake; then
|
if test -d /usr/share/automake; then
|
||||||
AUTOMAKE_DIR="/usr/share/automake"
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
fi
|
fi
|
||||||
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
|
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in install-sh mkinstalldirs missing; do
|
for f in install-sh mkinstalldirs missing; do
|
||||||
cp -av $AUTOMAKE_DIR/$f .
|
cp -av $AUTOMAKE_DIR/$f . || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --add-missing --copy
|
automake --add-missing --copy || exit 1
|
||||||
touch depcomp
|
touch depcomp || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if test -z "$GITCOMPILE_NO_MAKE"; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,8 @@ CLEANFILES = ld10k1d
|
||||||
|
|
||||||
noinst_HEADERS =
|
noinst_HEADERS =
|
||||||
|
|
||||||
EXTRA_DIST = ld10k1.m4 AUTHORS COPYING COPYING.LIB ChangeLog INSTALL \
|
EXTRA_DIST = gitcompile ld10k1.m4 AUTHORS COPYING COPYING.LIB ChangeLog \
|
||||||
README TODO ld10k1d.in
|
INSTALL README TODO ld10k1d.in
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/ld10k1
|
@rm -rf ../distdir/ld10k1
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,11 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
autoreconf -fi
|
autoreconf -fi || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ bin_PROGRAMS = mixartloader
|
||||||
|
|
||||||
mixartloader_SOURCES = mixartloader.c
|
mixartloader_SOURCES = mixartloader.c
|
||||||
|
|
||||||
EXTRA_DIST = depcomp
|
EXTRA_DIST = gitcompile depcomp
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/$(MYNAME)
|
@rm -rf ../distdir/$(MYNAME)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing
|
automake --foreign --add-missing || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ bin_PROGRAMS = pcxhrloader
|
||||||
|
|
||||||
pcxhrloader_SOURCES = pcxhrloader.c
|
pcxhrloader_SOURCES = pcxhrloader.c
|
||||||
|
|
||||||
EXTRA_DIST = depcomp
|
EXTRA_DIST = gitcompile depcomp
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/$(MYNAME)
|
@rm -rf ../distdir/$(MYNAME)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing
|
automake --foreign --add-missing || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
SUBDIRS = src
|
SUBDIRS = src
|
||||||
|
|
||||||
EXTRA_DIST = COPYING configure.in README NEWS AUTHORS TODO INSTALL ChangeLog
|
EXTRA_DIST = gitcompile COPYING configure.in README NEWS AUTHORS TODO \
|
||||||
|
INSTALL ChangeLog
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/qlo10k1
|
@rm -rf ../distdir/qlo10k1
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,11 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
autoreconf -fi
|
autoreconf -fi || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ rmedigicontrol_SOURCES = rmedigicontrol.c rmedigicontrol.h level.c loopback.c
|
||||||
|
|
||||||
rmedigicontrol_LDFLAGS = @RMEDIGICONTROL_LIBS@
|
rmedigicontrol_LDFLAGS = @RMEDIGICONTROL_LIBS@
|
||||||
|
|
||||||
EXTRA_DIST = depcomp configure.in-gtk1 configure.in-gtk2
|
EXTRA_DIST = gitcompile depcomp configure.in-gtk1 configure.in-gtk2
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,30 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
if test -d /usr/local/share/automake; then
|
if test -d /usr/local/share/automake; then
|
||||||
AUTOMAKE_DIR=/usr/local/share/automake
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
fi
|
fi
|
||||||
if test -d /usr/share/automake; then
|
if test -d /usr/share/automake; then
|
||||||
AUTOMAKE_DIR="/usr/share/automake"
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
fi
|
fi
|
||||||
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
|
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in install-sh mkinstalldirs missing; do
|
for f in install-sh mkinstalldirs missing; do
|
||||||
cp -av $AUTOMAKE_DIR/$f .
|
cp -av $AUTOMAKE_DIR/$f . || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing --copy
|
automake --foreign --add-missing --copy || exit 1
|
||||||
touch depcomp
|
touch depcomp || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if test -z "$GITCOMPILE_NO_MAKE"; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ man_MANS = cspctl.1
|
||||||
|
|
||||||
cspctl_SOURCES = cspctl.c
|
cspctl_SOURCES = cspctl.c
|
||||||
|
|
||||||
EXTRA_DIST = README COPYING cspctl.1 depcomp
|
EXTRA_DIST = gitcompile README COPYING cspctl.1 depcomp
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/sb16_csp
|
@rm -rf ../distdir/sb16_csp
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,30 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
if test -d /usr/local/share/automake; then
|
if test -d /usr/local/share/automake; then
|
||||||
AUTOMAKE_DIR=/usr/local/share/automake
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
fi
|
fi
|
||||||
if test -d /usr/share/automake; then
|
if test -d /usr/share/automake; then
|
||||||
AUTOMAKE_DIR="/usr/share/automake"
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
fi
|
fi
|
||||||
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
|
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in install-sh mkinstalldirs missing; do
|
for f in install-sh mkinstalldirs missing; do
|
||||||
cp -av $AUTOMAKE_DIR/$f .
|
cp -av $AUTOMAKE_DIR/$f . || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing --copy
|
automake --foreign --add-missing --copy || exit 1
|
||||||
touch depcomp
|
touch depcomp || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if -z "$GITCOMPILE_NO_MAKE"; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
13
seq/Makefile
13
seq/Makefile
|
|
@ -1,13 +1,18 @@
|
||||||
SUBDIRS = sbiload
|
SUBDIRS = sbiload
|
||||||
|
TOP = ..
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@for i in $(SUBDIRS); do cd $$i; ./gitcompile $(GITCOMPILE_ARGS); cd ..; $(MAKE) -C $$i; done
|
@for i in $(SUBDIRS); do cd $$i; echo $$i; ./gitcompile $(GITCOMPILE_ARGS) || exit 1; cd ..; $(MAKE) -C $$i; done
|
||||||
|
|
||||||
|
configure:
|
||||||
|
@for i in $(SUBDIRS); do cd $$i; echo $$i; ./configure $(CONFIGURE_ARGS) || exit 1; cd ..; $(MAKE) -C $$i; done
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@for i in $(SUBDIRS); do $(MAKE) -C $$i DESTDIR=$(DESTDIR) install; done
|
@for i in $(SUBDIRS); do $(MAKE) -C $$i DESTDIR=$(DESTDIR) install || exit 1; done
|
||||||
|
|
||||||
alsa-dist:
|
alsa-dist:
|
||||||
@for i in $(SUBDIRS); do $(MAKE) -C $$i alsa-dist; done
|
@for i in $(SUBDIRS); do $(MAKE) -C $$i alsa-dist || exit 1; done
|
||||||
|
@cp gitcompile Makefile $(TOP)/distdir/seq
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@for i in $(SUBDIRS); do $(MAKE) -C $$i clean; done
|
@for i in $(SUBDIRS); do $(MAKE) -C $$i clean || exit 1; done
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ sbiload_SOURCES = sbiload.c
|
||||||
patchdir = $(datadir)/sounds/opl3
|
patchdir = $(datadir)/sounds/opl3
|
||||||
patch_DATA = std.o3 drums.o3 std.sb drums.sb
|
patch_DATA = std.o3 drums.o3 std.sb drums.sb
|
||||||
|
|
||||||
EXTRA_DIST = README COPYING depcomp std.o3 drums.o3 std.sb drums.sb
|
EXTRA_DIST = gitcompile README COPYING depcomp std.o3 drums.o3 std.sb drums.sb
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../../distdir/seq/sbiload
|
@rm -rf ../../distdir/seq/sbiload
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,30 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
if test -d /usr/local/share/automake; then
|
if test -d /usr/local/share/automake; then
|
||||||
AUTOMAKE_DIR=/usr/local/share/automake
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
fi
|
fi
|
||||||
if test -d /usr/share/automake; then
|
if test -d /usr/share/automake; then
|
||||||
AUTOMAKE_DIR="/usr/share/automake"
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
fi
|
fi
|
||||||
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
|
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in install-sh mkinstalldirs missing; do
|
for f in install-sh mkinstalldirs missing; do
|
||||||
cp -av $AUTOMAKE_DIR/$f .
|
cp -av $AUTOMAKE_DIR/$f . || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing --copy
|
automake --foreign --add-missing --copy || exit 1
|
||||||
touch depcomp
|
touch depcomp || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ bin_PROGRAMS = sscape_ctl
|
||||||
|
|
||||||
sscape_ctl_SOURCES = sscape_ctl.c
|
sscape_ctl_SOURCES = sscape_ctl.c
|
||||||
|
|
||||||
EXTRA_DIST = depcomp
|
EXTRA_DIST = gitcompile depcomp
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/sscape_ctl
|
@rm -rf ../distdir/sscape_ctl
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,29 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
if test -d /usr/local/share/automake; then
|
if test -d /usr/local/share/automake; then
|
||||||
AUTOMAKE_DIR=/usr/local/share/automake
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
fi
|
fi
|
||||||
if test -d /usr/share/automake; then
|
if test -d /usr/share/automake; then
|
||||||
AUTOMAKE_DIR="/usr/share/automake"
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
fi
|
fi
|
||||||
|
if test -z "$AUTOMAKE_DIR"; then
|
||||||
|
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in install-sh mkinstalldirs missing; do
|
for f in install-sh mkinstalldirs missing; do
|
||||||
cp -av $AUTOMAKE_DIR/$f .
|
cp -av $AUTOMAKE_DIR/$f . || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing
|
automake --foreign --add-missing || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if test -z "$GITCOMPILE_NO_MAKE"; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ bin_PROGRAMS = us428control
|
||||||
us428control_SOURCES = us428control.cc Cus428State.cc Cus428_ctls.cc Cus428Midi.cc
|
us428control_SOURCES = us428control.cc Cus428State.cc Cus428_ctls.cc Cus428Midi.cc
|
||||||
noinst_HEADERS = usbus428ctldefs.h Cus428State.h Cus428_ctls.h Cus428Midi.h
|
noinst_HEADERS = usbus428ctldefs.h Cus428State.h Cus428_ctls.h Cus428Midi.h
|
||||||
|
|
||||||
EXTRA_DIST = depcomp
|
EXTRA_DIST = gitcompile depcomp
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/us428control
|
@rm -rf ../distdir/us428control
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing
|
automake --foreign --add-missing || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ bin_PROGRAMS = usx2yloader
|
||||||
|
|
||||||
usx2yloader_SOURCES = usx2yloader.c
|
usx2yloader_SOURCES = usx2yloader.c
|
||||||
|
|
||||||
EXTRA_DIST = depcomp tascam_fw.usermap tascam_fw.in tascam_fpga.in
|
EXTRA_DIST = gitcompile depcomp tascam_fw.usermap tascam_fw.in tascam_fpga.in
|
||||||
|
|
||||||
hotplug_files = tascam_fw.usermap tascam_fw tascam_fpga
|
hotplug_files = tascam_fw.usermap tascam_fw tascam_fpga
|
||||||
hotplugdir = /etc/hotplug/usb
|
hotplugdir = /etc/hotplug/usb
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing
|
automake --foreign --add-missing || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
@ -9,7 +9,7 @@ bin_PROGRAMS = vxloader
|
||||||
|
|
||||||
vxloader_SOURCES = vxloader.c
|
vxloader_SOURCES = vxloader.c
|
||||||
|
|
||||||
EXTRA_DIST = depcomp
|
EXTRA_DIST = gitcompile depcomp
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/$(MYNAME)
|
@rm -rf ../distdir/$(MYNAME)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS || exit 1
|
||||||
automake --foreign --add-missing
|
automake --foreign --add-missing || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
echo "./configure $@"
|
echo "./configure $@"
|
||||||
./configure $@
|
./configure $@ || exit 1
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
make
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||||
|
make || exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue