crashtest-r0ket/firmware/loadable/Makefile
2011-06-19 21:01:00 +02:00

12 lines
248 B
Makefile

# Make doesn't allow dependencies on parent directory, so we need to
# run make from one level up:
MAKEFILE=loadable/Makefile.sub
MAKE+=--no-print-directory
all:
@cd .. && $(MAKE) -f $(MAKEFILE)
clean:
@cd .. && $(MAKE) -f $(MAKEFILE) clean