summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: ab247e0aee66ab18d5a2c9f08b31b080e3e51a5f (plain)
1
2
3
4
5
6
7
8
9
CFLAGS=-Wall -O0 -g -W -Wno-unused-parameter

all: common.o malloc.o test-sine.o oss.o
	$(CC) $(CFLAGS) -o $@ $^ 

*.o: *.h

clean:
	rm -f *.o