alsa-tools/sb16_csp/Makefile
2001-06-05 06:49:09 +00:00

27 lines
393 B
Makefile

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