# # Directory-specific make options for this directory. # Most of the real work is done by "Makefile.config". # # If we don't specify which subdirectories we want to # build, Makefile.config will assume we want to run make # in all of them. SUBDIRS=src # We don't want to compile any sources, nor build a # library in this directory SRCS= LIB= # Targets listed here will be build after everything else FINAL=success # # To build the binary image... # .PHONY: success success: focus.bin @echo '--' @echo Mission complete! @echo Kernel size: `ls -l $< | awk '{print $$5}'` bytes realclean: dirrealclean dirrealclean: @rm -f focus.bin