mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
27 lines
399 B
Makefile
27 lines
399 B
Makefile
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
|