diff options
| author | Paul Harrison <[email protected]> | 2026-06-07 17:49:16 -0700 |
|---|---|---|
| committer | Paul Harrison <[email protected]> | 2026-06-07 17:49:16 -0700 |
| commit | 76a02622caf8f16979d8bc67890764768f7d06c0 (patch) | |
| tree | d4578dd33e4b3a06623dbcdd158f099ec43fac09 /Makefile | |
DTMF Encoder
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..316eca8 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.PHONY: test + +all: dtmfencode test + +dtmfencode: dtmfencode.c + cc $^ -o $@ + +test: dtmfencode + ./dtmfencode test.wav "1234567890*#ABCD" 40000 100 |
