
#
# Makefile for m_filter program
#

CFLAGS = -Wall -Wstrict-prototypes -O2

all : m_filter

clean :
	rm -f *.o core a.out *.~*

m_filter : m_filter.o
