mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-24 07:00:00 -05:00
Initial CVS version
This commit is contained in:
parent
670c55934e
commit
8968d2aab7
9 changed files with 1103 additions and 0 deletions
27
seq/sbiload/Makefile
Normal file
27
seq/sbiload/Makefile
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
TOP = .
|
||||
include $(TOP)/make.conf
|
||||
|
||||
CFLAGS = $(COPTS) $(INCLUDES)
|
||||
LIBS = $(ASOUND)
|
||||
|
||||
OBJS = sbiload.o
|
||||
|
||||
|
||||
# Build all the targets.
|
||||
#
|
||||
all: $(OBJS)
|
||||
$(CC) -o sbiload $(CFLAGS) $(OBJS) $(LIBS)
|
||||
|
||||
install: all
|
||||
$(INSTALL) sbiload $(INSTDIR)
|
||||
|
||||
# Remove all object files and exectutables
|
||||
#
|
||||
clean:
|
||||
rm -f sbiload $(OBJS) core a.out
|
||||
|
||||
# Remove all generated and built files.
|
||||
#
|
||||
clobber: clean
|
||||
|
||||
sbiload.o : sbiload.c
|
||||
Loading…
Add table
Add a link
Reference in a new issue