.PHONY: all clean TOP=$(shell pwd) # Set a default configuration. ifeq ($(CONFIG),) CONFIG=release endif all: make -C rom TOP=$(TOP) CONFIG=$(CONFIG) clean: make -C rom TOP=$(TOP) CONFIG=$(CONFIG) clean