665b8f777a
Previously, wmmixer-alsa existed as an object in the repository named wmmixer-alsa-0.6. However, it was not a directory and contained no files. This patch removes this object and adds the source to wmmixer-alsa. It was obtained by extracting wmmixer-alsa-0.6.tar.gz from the source rpm found at http://ftp.cc.uoc.gr/mirrors/linux/pld/pool/w/wmmixer-alsa/.
10 lines
200 B
Makefile
10 lines
200 B
Makefile
CC=gcc
|
|
CFLAGS= -I/usr/X11R6/include -g
|
|
OBJS=wmmixer-alsa.o mixer.o
|
|
|
|
all: ${OBJS}
|
|
${CC} -L/usr/X11R6/lib -g -lm -lXpm -lXext -lX11 -lasound ${OBJS} -o wmmixer-alsa
|
|
|
|
clean:
|
|
rm -rf *.o *~ wmmixer-alsa
|