Files
techno-gen/Makefile
mikael-lovqvists-claude-agent d58d0d3b09 Initial release: procedural techno music generator
Synthesizes kick, snare, hi-hat, bass, and acid lead from scratch.
32-bar song structure with filter sweeps and pattern variation.
Outputs raw float32 stereo at 44.1 kHz to stdout.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 08:47:22 +00:00

13 lines
178 B
Makefile

CC = gcc
CFLAGS = -O2 -Wall -Wextra
LDFLAGS = -lm
TARGET = techno-gen
$(TARGET): $(TARGET).c
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
clean:
rm -f $(TARGET)
.PHONY: clean