Changeset 947 for trunk/initramfs-tools-tcos/tmixer/Makefile
- Timestamp:
- 08/06/08 20:23:04 (5 months ago)
- Files:
-
- 1 modified
-
trunk/initramfs-tools-tcos/tmixer/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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
