Show
Ignore:
Timestamp:
08/06/08 20:23:04 (5 months ago)
Author:
mariodebian
Message:

initramfs-tools-tcos (0.89.5)

  • tmixer/Makefile
    • Disable '-ansi -pedantic' compile flags (Debian Etch libasound2-dev don't like it)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/initramfs-tools-tcos/tmixer/Makefile

    r927 r947  
    1 CFLAGS          = -g -O2 -Wall -ansi -pedantic -std=c99 -DTCOS_VERSION="\"$(VERSION)\"" 
     1DEBUGCFLAGS     = -g -O2 -Wall -ansi -pedantic -std=c99 -DTCOS_VERSION="\"$(VERSION)\"" 
     2CFLAGS          = -g -O2 -Wall -DTCOS_VERSION="\"$(VERSION)\"" 
    23LDADD           = -lasound 
    34bin_PROGRAMS = tmixer 
    45TMIXER_SOURCES= tmixer-alsa.c tmixer-oss.c 
    56CC=gcc 
     7 
     8all: tmixer 
    69 
    710tmixer: tmixer.c tmixer-oss.c tmixer-oss.h tmixer-alsa.c tmixer-alsa.h 
     
    1518 
    1619 
     20debug: 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 
    1725include ../common.mk 
    1826