mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-26 07:00:10 -05:00
Initial version by Uros Bizjak <uros@kss-loka.si>
This commit is contained in:
parent
8968d2aab7
commit
eaaf0e43b8
6 changed files with 737 additions and 0 deletions
27
sb16_csp/Makefile
Normal file
27
sb16_csp/Makefile
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
TOP = .
|
||||
include $(TOP)/make.conf
|
||||
|
||||
CFLAGS = $(COPTS) $(INCLUDES)
|
||||
LIBS = $(ASOUND)
|
||||
|
||||
OBJS = cspctl.o
|
||||
|
||||
|
||||
# Build all the targets.
|
||||
#
|
||||
all: $(OBJS)
|
||||
$(CC) -o cspctl $(CFLAGS) $(OBJS) $(LIBS)
|
||||
|
||||
install: all
|
||||
$(INSTALL) cspctl $(INSTDIR)
|
||||
|
||||
# Remove all object files and exectutables
|
||||
#
|
||||
clean:
|
||||
rm -f cspctl $(OBJS) core a.out
|
||||
|
||||
# Remove all generated and built files.
|
||||
#
|
||||
clobber: clean
|
||||
|
||||
cspctl.o : cspctl.c
|
||||
Loading…
Add table
Add a link
Reference in a new issue