formats: clarify setting of reverse_bytes
[sox.git] / test / Makefile
blobe46aae89debe4e42949936a7c407489aab2d899a
1 # makefile for gcc
3 # Uncomment the following if you need a specific compiler.
4 #CC=gcc
6 CFLAGS:=-O2 -Wall
7 LDFLAGS:=-s
8 LIBS:=-lm
10 all: model lmodel corr
12 corr: corr.c
13 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS)
15 model: model.c
16 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS)
18 lmodel: model.c
19 $(CC) $(CFLAGS) -DLSAMPL $(LDFLAGS) -o $@ $< $(LIBS)
21 clean:
22 rm -f model lmodel corr *~ A B