mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
autoconf & automake clean up.
This commit is contained in:
parent
e24a42fbea
commit
9d40e1834b
11 changed files with 12 additions and 24 deletions
|
|
@ -1,8 +1,6 @@
|
||||||
# # Process this file with automake to produce Makefile.in.
|
# # Process this file with automake to produce Makefile.in.
|
||||||
AUTOMAKE_OPTIONS = 1.3 foreign
|
AUTOMAKE_OPTIONS = 1.3 foreign
|
||||||
|
|
||||||
CFLAGS = -Wall -Werror -O3 -g
|
|
||||||
|
|
||||||
bin_PROGRAMS = ac3dec
|
bin_PROGRAMS = ac3dec
|
||||||
|
|
||||||
ac3dec_LDADD= -L./libac3 -lac3
|
ac3dec_LDADD= -L./libac3 -lac3
|
||||||
|
|
|
||||||
|
|
@ -23,12 +23,12 @@ imdct_test_LDADD = ../libac3/imdct.o -lm
|
||||||
#crc_timing_LDADD = ../crc.o -lm
|
#crc_timing_LDADD = ../crc.o -lm
|
||||||
|
|
||||||
check:
|
check:
|
||||||
#rm -f bitstream_test.out
|
# rm -f bitstream_test.out
|
||||||
#./bitstream_test > bitstream_test.out
|
# ./bitstream_test > bitstream_test.out
|
||||||
#diff bitstream_test.out bitstream_test.out.ref
|
# diff bitstream_test.out bitstream_test.out.ref
|
||||||
#rm -f imdct_test.out
|
# rm -f imdct_test.out
|
||||||
#./imdct_test > imdct_test.out
|
# ./imdct_test > imdct_test.out
|
||||||
#diff imdct_test.out imdct_test.out.ref
|
# diff imdct_test.out imdct_test.out.ref
|
||||||
rm -f dither_test.out
|
rm -f dither_test.out
|
||||||
./dither_test > dither_test.out
|
./dither_test > dither_test.out
|
||||||
diff dither_test.out dither_test.out.ref
|
diff dither_test.out dither_test.out.ref
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,11 @@
|
||||||
|
AM_CFLAGS = @GTK_CFLAGS@
|
||||||
bin_PROGRAMS = envy24control
|
bin_PROGRAMS = envy24control
|
||||||
man_MANS = envy24control.1
|
man_MANS = envy24control.1
|
||||||
envy24control_SOURCES = envy24control.c envy24control.h levelmeters.c \
|
envy24control_SOURCES = envy24control.c envy24control.h levelmeters.c \
|
||||||
mixer.c patchbay.c hardware.c driverevents.c volume.c
|
mixer.c patchbay.c hardware.c driverevents.c volume.c
|
||||||
envy24control_LDFLAGS = $(GTK_LIBS)
|
envy24control_LDFLAGS = @GTK_LIBS@
|
||||||
EXTRA_DIST = cvscompile envy24control.1 depcomp
|
EXTRA_DIST = cvscompile envy24control.1 depcomp
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -rf .deps *~
|
|
||||||
|
|
||||||
alsa-dist: distdir
|
alsa-dist: distdir
|
||||||
@rm -rf ../distdir/envy24control
|
@rm -rf ../distdir/envy24control
|
||||||
@mkdir -p ../distdir/envy24control
|
@mkdir -p ../distdir/envy24control
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,5 @@ AC_PROG_INSTALL
|
||||||
AC_HEADER_STDC
|
AC_HEADER_STDC
|
||||||
AM_PATH_GTK(1.0.1)
|
AM_PATH_GTK(1.0.1)
|
||||||
AM_PATH_ALSA(0.9.0)
|
AM_PATH_ALSA(0.9.0)
|
||||||
CFLAGS="$CFLAGS $GTK_CFLAGS $ALSA_FLAGS"
|
|
||||||
LDFLAGS="$LDFLAGS $GTK_LIBS $ALSA_LIBS"
|
|
||||||
|
|
||||||
AC_OUTPUT(Makefile)
|
AC_OUTPUT(Makefile)
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
# # Process this file with automake to produce Makefile.in.
|
# # Process this file with automake to produce Makefile.in.
|
||||||
AUTOMAKE_OPTIONS = 1.3 foreign
|
AUTOMAKE_OPTIONS = 1.3 foreign
|
||||||
|
|
||||||
CFLAGS = -Wall -g
|
|
||||||
|
|
||||||
bin_PROGRAMS = cspctl
|
bin_PROGRAMS = cspctl
|
||||||
man_MANS = cspctl.1
|
man_MANS = cspctl.1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ else
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CFLAGS="$CFLAGS $ALSA_FLAGS"
|
CFLAGS="$CFLAGS $ALSA_CFLAGS"
|
||||||
LDFLAGS="$LDFLAGS $ALSA_LIBS"
|
LDFLAGS="$LDFLAGS $ALSA_LIBS"
|
||||||
|
|
||||||
AC_OUTPUT(Makefile)
|
AC_OUTPUT(Makefile)
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
# # Process this file with automake to produce Makefile.in.
|
# # Process this file with automake to produce Makefile.in.
|
||||||
AUTOMAKE_OPTIONS = 1.3 foreign
|
AUTOMAKE_OPTIONS = 1.3 foreign
|
||||||
|
|
||||||
CFLAGS = -Wall -g
|
|
||||||
|
|
||||||
bin_PROGRAMS = sbiload
|
bin_PROGRAMS = sbiload
|
||||||
#man_MANS = sbiload.1
|
#man_MANS = sbiload.1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ else
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CFLAGS="$CFLAGS $ALSA_FLAGS"
|
CFLAGS="$CFLAGS $ALSA_CFLAGS"
|
||||||
LDFLAGS="$LDFLAGS $ALSA_LIBS"
|
LDFLAGS="$LDFLAGS $ALSA_LIBS"
|
||||||
|
|
||||||
AC_OUTPUT(Makefile)
|
AC_OUTPUT(Makefile)
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
# # Process this file with automake to produce Makefile.in.
|
# # Process this file with automake to produce Makefile.in.
|
||||||
AUTOMAKE_OPTIONS = 1.3 foreign
|
AUTOMAKE_OPTIONS = 1.3 foreign
|
||||||
|
|
||||||
CFLAGS = -Wall -g
|
|
||||||
|
|
||||||
bin_PROGRAMS = sscape_ctl
|
bin_PROGRAMS = sscape_ctl
|
||||||
|
|
||||||
sscape_ctl_SOURCES = sscape_ctl.c
|
sscape_ctl_SOURCES = sscape_ctl.c
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ else
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CFLAGS="$CFLAGS $ALSA_FLAGS"
|
CFLAGS="$CFLAGS $ALSA_CFLAGS"
|
||||||
LDFLAGS="$LDFLAGS $ALSA_LIBS"
|
LDFLAGS="$LDFLAGS $ALSA_LIBS"
|
||||||
|
|
||||||
AC_OUTPUT(Makefile)
|
AC_OUTPUT(Makefile)
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# # Process this file with automake to produce Makefile.in.
|
# # Process this file with automake to produce Makefile.in.
|
||||||
AUTOMAKE_OPTIONS = 1.3 foreign
|
AUTOMAKE_OPTIONS = 1.3 foreign
|
||||||
|
|
||||||
CFLAGS = @CFLAGS@ -DDATAPATH=\"$(datadir)/alsa/firmware\"
|
AM_CFLAGS = -DDATAPATH=\"$(datadir)/alsa/firmware\"
|
||||||
|
|
||||||
SUBDIRS = firmware
|
SUBDIRS = firmware
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue