# HG changeset patch # User Mychaela Falconia # Date 1710188329 28800 # Node ID 2cdbd574bba6353d5981eeefa35b5132db96c45b # Parent 3c5734b88c20469a1d009d7f6c98c1dd5b070e0d tone-detect/Makefile: add install diff -r 3c5734b88c20 -r 2cdbd574bba6 tone-detect/Makefile --- a/tone-detect/Makefile Thu Mar 07 02:33:49 2024 -0800 +++ b/tone-detect/Makefile Mon Mar 11 12:18:49 2024 -0800 @@ -1,6 +1,7 @@ CC= gcc CFLAGS= -O2 PROG= g711-tone-detect +INSTBIN=/opt/themwi/bin all: ${PROG} @@ -8,6 +9,7 @@ ${CC} ${CFLAGS} -o $@ $@.c -lspandsp -lm install: + install -c -m 755 ${PROG} ${INSTBIN} clean: rm -f *.o ${PROG} errs