mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
20 lines
539 B
Makefile
20 lines
539 B
Makefile
# # Process this file with automake to produce Makefile.in.
|
|
AUTOMAKE_OPTIONS = 1.3 foreign
|
|
|
|
bin_PROGRAMS = sbiload
|
|
#man_MANS = sbiload.1
|
|
|
|
AM_CFLAGS = -DPATCHDIR=\"$(datadir)/sounds/opl3\"
|
|
|
|
sbiload_SOURCES = sbiload.c
|
|
|
|
patchdir = $(datadir)/sounds/opl3
|
|
patch_DATA = std.o3 drums.o3 std.sb drums.sb
|
|
|
|
EXTRA_DIST = gitcompile README COPYING depcomp std.o3 drums.o3 std.sb drums.sb
|
|
|
|
alsa-dist: distdir
|
|
@rm -rf ../../distdir/seq/sbiload
|
|
@mkdir -p ../../distdir/seq/sbiload
|
|
@cp -RLpv $(distdir)/* ../../distdir/seq/sbiload
|
|
@rm -rf $(distdir)
|