1
0

Makefile 1002 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 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. # ARMv7
  13. #
  14. # Abstract:
  15. #
  16. # This library implements support routines for the ARMv7 architecture.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 11-Aug-2012
  21. #
  22. # Environment:
  23. #
  24. # Kernel
  25. #
  26. ################################################################################
  27. BINARY = armsup.a
  28. BINARYTYPE = library
  29. ARMV7_OBJS = archsup.o \
  30. archsupc.o \
  31. commsup.o \
  32. inttable.o \
  33. prochw.o \
  34. sstep.o \
  35. trap.o \
  36. vfp.o \
  37. DIRS = boot
  38. boot: $(BINARY)
  39. include $(SRCROOT)/os/minoca.mk