shithub: sox

ref: 8c2be5c74c6d10b1470812a8c9d0db88a595cc8b
dir: /test/Makefile/

View raw version
# makefile for gcc

# Uncomment the following if you need a specific compiler.
#CC=gcc

CFLAGS:=-O2 -Wall
LDFLAGS:=-s
LIBS:=-lm

all: model lmodel corr

corr: corr.c
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS)

model: model.c
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS)

lmodel: model.c
	$(CC) $(CFLAGS) -DLSAMPL $(LDFLAGS) -o $@ $< $(LIBS)

clean:
	rm -f model lmodel corr *~ A B