
# Makefile for the wav2adpcm program.

CFLAGS = -O2 -Wall -g
LDFLAGS = -g

all: wav2adpcm

clean:
	-rm -f wav2adpcm.o wav2adpcm
