Initial CVS version

This commit is contained in:
Jaroslav Kysela 2001-05-11 07:43:52 +00:00
parent 670c55934e
commit 8968d2aab7
9 changed files with 1103 additions and 0 deletions

27
seq/sbiload/Makefile Normal file
View 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