
all: force
	@echo "this is a dummy Makefile which only has 'make clean' as a target"

clean: force
	$(RM) a.out *.cpp *.o *.s *~

force:

