mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 22:45:43 +01:00
23 lines
341 B
Makefile
23 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 *~
|