Makefile 319 B

12345678910111213
  1. #CFLAGS=$(shell pkg-config --cflags sndfile soxr) -I. -Wall -O1
  2. CFLAGS=$(shell pkg-config --cflags sndfile) -I. -Wall -O1
  3. #LDLIBS=$(shell pkg-config --libs sndfile soxr)
  4. LDLIBS=$(shell pkg-config --libs sndfile)
  5. all: wav_encode
  6. wav_encode: wav_encode.c g711.c g726.c
  7. clean:
  8. rm -f wav_encode *.o
  9. .PHONY: all clean