1# Delegate everything to the toplevel makefile
2# this is only here so 'make' works in src/
3all:
4	@$(MAKE) -C .. $@
5
6# Catch all rule
7%:
8	@$(MAKE) -C .. $@
9