MODULES=base.o mid.o top.o
CFLAGS=-DMODULE -O

all: $(MODULES)
	@echo now run "'demo'"

clean:
	rm -f $(MODULES)
