Changeset 947
- Timestamp:
- 08/06/08 20:23:04 (4 months ago)
- Location:
- trunk/initramfs-tools-tcos
- Files:
-
- 2 modified
-
debian/changelog (modified) (1 diff)
-
tmixer/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/initramfs-tools-tcos/debian/changelog
r946 r947 9 9 * xmlrpc/tcosxmlrpc.c 10 10 - Fix typo adding method tcos_tnc in OLD API 11 12 -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com> Wed, 06 Aug 2008 20:03:40 +0200 11 * tmixer/Makefile 12 - Disable '-ansi -pedantic' compile flags (Debian Etch libasound2-dev don't like it) 13 14 -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com> Wed, 06 Aug 2008 20:21:58 +0200 13 15 14 16 initramfs-tools-tcos (0.89.4) unstable; urgency=low -
trunk/initramfs-tools-tcos/tmixer/Makefile
r927 r947 1 CFLAGS = -g -O2 -Wall -ansi -pedantic -std=c99 -DTCOS_VERSION="\"$(VERSION)\"" 1 DEBUGCFLAGS = -g -O2 -Wall -ansi -pedantic -std=c99 -DTCOS_VERSION="\"$(VERSION)\"" 2 CFLAGS = -g -O2 -Wall -DTCOS_VERSION="\"$(VERSION)\"" 2 3 LDADD = -lasound 3 4 bin_PROGRAMS = tmixer 4 5 TMIXER_SOURCES= tmixer-alsa.c tmixer-oss.c 5 6 CC=gcc 7 8 all: tmixer 6 9 7 10 tmixer: tmixer.c tmixer-oss.c tmixer-oss.h tmixer-alsa.c tmixer-alsa.h … … 15 18 16 19 20 debug: tmixer.c tmixer-oss.c tmixer-oss.h tmixer-alsa.c tmixer-alsa.h 21 $(CC) -o $(bin_PROGRAMS) tmixer.c $(LDADD) $(DEBUGCFLAGS) 22 23 24 17 25 include ../common.mk 18 26
