mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 06:35:41 +01:00
24 lines
341 B
Makefile
24 lines
341 B
Makefile
|
#
|
||
|
# Makefile for Alsa Mixer
|
||
|
#
|
||
|
|
||
|
TOPDIR = ..
|
||
|
|
||
|
include $(TOPDIR)/Makefile.conf
|
||
|
|
||
|
OBJECTS = alsamixer.o
|
||
|
|
||
|
.SUFFIXES:
|
||
|
.SUFFIXES: .o .cpp .c .s .S
|
||
|
|
||
|
.c.o:
|
||
|
$(CC) $(COPTS) $(INCLUDE) -DNCURSESINC=$(NCURSESINC) -c -o $*.o $<
|
||
|
|
||
|
all: alsamixer
|
||
|
|
||
|
alsamixer: $(OBJECTS)
|
||
|
$(CPP) -o alsamixer $(OBJECTS) $(SNDLIB) $(NCURSESLIB)
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o alsamixer *~
|