summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 45cc02938032ef2e130970736bbddb93a4c184c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CFLAGS=-pipe -O0 -W -Wall -g -DTEST=7 -D_GNU_SOURCE
CC=gcc
LIBS=-lm

all: main

*.o: Makefile

main: main.o v17tcm.o v17mod.o bitsplit.o util.o interpol.o resample.o
	$(CC) -o $@ $^ $(LIBS)

clean: 
	rm -f main *.o

.PHONY: clean