# reader 2001 aoe 

#CC=mipsel-linux-gcc
#STRIP=mipsel-linux-strip
STRIP=strip

PRG=reader

all: $(PRG)
	$(STRIP) $^

reader: reader.o

reader.o: reader.l

clean:
	$(RM) -f core *.o reader.c $(PRG)
