Makefile 427 B

1234567891011121314151617
  1. #
  2. # Toplevel makefile for the OS/161 kernel tree.
  3. #
  4. # Note: actual kernels are not compiled here; they are compiled in
  5. # compile/FOO where FOO is a kernel configuration name.
  6. #
  7. # We don't actually do anything from here except install includes.
  8. #
  9. TOP=..
  10. .include "$(TOP)/mk/os161.config.mk"
  11. INCLUDES=\
  12. include/kern include/kern \
  13. arch/$(MACHINE)/include/kern include/kern/$(MACHINE)
  14. .include "$(TOP)/mk/os161.includes.mk"