2020-05-13 01:54:27 +02:00
|
|
|
# arngment - random music generator
|
|
|
|
#
|
|
|
|
# Written in 2020 by Lucas
|
|
|
|
#
|
|
|
|
# To the extent possible under law, the author(s) have dedicated all
|
|
|
|
# copyright and related and neighboring rights to this software to the
|
|
|
|
# public domain worldwide. This software is distributed without any
|
|
|
|
# warranty.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the CC0 Public Domain Dedication
|
|
|
|
# along with this software. If not, see
|
|
|
|
# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
.POSIX:
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
|
|
|
|
P = arngment
|
|
|
|
V = 0.0
|
|
|
|
|
|
|
|
LDLIBS = -lm
|
|
|
|
|
2020-05-14 01:39:44 +02:00
|
|
|
HDR = err.h lrand48_uniform.h note.h synth.h
|
|
|
|
OBJ = err.o lrand48_uniform.o main.o note.o synth.o
|
2020-05-13 01:54:27 +02:00
|
|
|
SRC = ${OBJ:.o=.c}
|
|
|
|
DIST_FILES = COPYING Makefile ${HDR} ${SRC}
|
|
|
|
|
|
|
|
all: arngment
|
|
|
|
|
|
|
|
arngment: ${OBJ}
|
|
|
|
${CC} ${LDFLAGS} -o $@ ${OBJ} ${LDLIBS}
|
|
|
|
|
|
|
|
${OBJ}: ${HDR}
|
|
|
|
|
|
|
|
play: all
|
|
|
|
./arngment ${ARNGMENT_ARGS} | aucat -e s16 -h raw -i -
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f arngment ${OBJ} ${P}-${V}.tgz
|
|
|
|
|
|
|
|
dist: clean
|
|
|
|
pax -ws '@^@${P}-${V}/@' ${DIST_FILES} | gzip >${P}-${V}.tgz
|