123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- ################################################################################
- #
- # Copyright (c) 2013 Minoca Corp.
- #
- # This file is licensed under the terms of the GNU General Public License
- # version 3. Alternative licensing terms are available. Contact
- # info@minocacorp.com for details. See the LICENSE file at the root of this
- # project for complete licensing information..
- #
- # Module Name:
- #
- # Win32 C Library Support
- #
- # Abstract:
- #
- # This module compiles a subset of the Minoca C library retargetd towards
- # Windows platforms.
- #
- # Author:
- #
- # Evan Green 10-Sep-2013
- #
- # Environment:
- #
- # Kernel Mode
- #
- ################################################################################
- BINARY = wincsup.a
- BINARYTYPE = library
- BUILD = yes
- INCLUDES += $(SRCDIR)/include;..;
- VPATH += $(SRCDIR)/..:
- OBJS = regexcmp.o \
- regexexe.o \
- strftime.o \
- include $(SRCROOT)/os/minoca.mk
- ##
- ## Override the compiler since this is a Windows library.
- ##
- CC := gcc
- LD := ld
- RCC := windres
- AR := ar
- AS := as
|