mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 06:39:32 -04:00
22 lines
463 B
Makefile
22 lines
463 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
SOC?=at91rm9200
|
|
|
|
LIB= at91
|
|
INTERNALLIB=
|
|
SRCS=${SOC}_lowlevel.c delay.c eeprom.c emac.c emac_init.c getc.c \
|
|
putchar.c printf.c reset.c spi_flash.c xmodem.c \
|
|
sd-card.c strcvt.c strlen.c strcmp.c memcpy.c strcpy.c \
|
|
memset.c memcmp.c
|
|
SRCS+=ashldi3.c divsi3.S
|
|
MAN=
|
|
|
|
.if ${MK_TAG_LIST} != "no"
|
|
CFLAGS += -I${.CURDIR}/.. -DSUPPORT_TAG_LIST
|
|
SRCS+=tag_list.c
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|