Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ################################################################################
  2. #
  3. # Copyright (c) 2014 Minoca Corp.
  4. #
  5. # This file is licensed under the terms of the GNU General Public License
  6. # version 3. Alternative licensing terms are available. Contact
  7. # info@minocacorp.com for details. See the LICENSE file at the root of this
  8. # project for complete licensing information.
  9. #
  10. # Binary Name:
  11. #
  12. # PC/AT Boot Library
  13. #
  14. # Abstract:
  15. #
  16. # This library contains the PC/AT (BIOS) Boot Library.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 19-Feb-2014
  21. #
  22. # Environment:
  23. #
  24. # Boot
  25. #
  26. ################################################################################
  27. BINARY = bootpcat.a
  28. BINARYTYPE = library
  29. include $(SRCDIR)/../sources
  30. ##
  31. ## Include the Ke build root to get version.h.
  32. ##
  33. INCLUDES += $(SRCDIR)/../include;$(SRCDIR)/..;$(OBJROOT)/os/kernel/ke;
  34. OBJS += fwapi.o \
  35. int10.o \
  36. int13.o \
  37. memory.o \
  38. realmexe.o \
  39. realmode.o \
  40. reset.o \
  41. rsdp.o \
  42. time.o \
  43. include $(SRCROOT)/os/minoca.mk