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>
This commit is contained in:
2026-03-21 08:47:22 +00:00
commit d58d0d3b09
3 changed files with 509 additions and 0 deletions

12
Makefile Normal file
View File

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