1234567891011121314151617181920212223242526272829303132333435363738 |
- ################################################################################
- #
- # Copyright (c) 2014 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.
- #
- # Binary Name:
- #
- # OMAP UART
- #
- # Abstract:
- #
- # This library contains the UART controller library used in Texas
- # Instruments OMAP3 and OMAP4 SoCs.
- #
- # Author:
- #
- # Evan Green 27-Feb-2014
- #
- # Environment:
- #
- # Firmware
- #
- ################################################################################
- include $(SRCDIR)/../common
- BINARY = omapuart.a
- BINARYTYPE = klibrary
- OBJS = omapuart.o \
- include $(SRCROOT)/os/minoca.mk
|