
CFLAGS = -Wall

PROGS = fcopia copia timing Copia.class

all:	$(PROGS)

%.class:	%.java
	javac $<

clean:
	rm -f $(PROGS)  *.o *~
