Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 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. # Module Name:
  11. #
  12. # Win32 C Library Support
  13. #
  14. # Abstract:
  15. #
  16. # This module compiles a subset of the Minoca C library retargetd towards
  17. # Windows platforms.
  18. #
  19. # Author:
  20. #
  21. # Evan Green 10-Sep-2013
  22. #
  23. # Environment:
  24. #
  25. # Kernel Mode
  26. #
  27. ################################################################################
  28. BINARY = wincsup.a
  29. BINARYTYPE = library
  30. BUILD = yes
  31. INCLUDES += $(SRCDIR)/include;..;
  32. VPATH += $(SRCDIR)/..:
  33. OBJS = regexcmp.o \
  34. regexexe.o \
  35. strftime.o \
  36. include $(SRCROOT)/os/minoca.mk
  37. ##
  38. ## Override the compiler since this is a Windows library.
  39. ##
  40. CC := gcc
  41. LD := ld
  42. RCC := windres
  43. AR := ar
  44. AS := as