summaryrefslogtreecommitdiffstats
path: root/testsuite/link01/Makefile_ldr
blob: 54db09a3197e615e86abb8ba3e2d889f54b39fb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
#  $Id$
#

include ../../config.inc

PGM=${ARCH}/link01_r.exe

# optional managers required
MANAGERS=all

# C source names
C_FILES = test.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)

AM_CPPFLAGS += -I $(INSTALL_BASE)/include
LINK_LIBS += $(INSTALL_BASE)/libbsd.a -Wl,-r

include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
include $(PROJECT_ROOT)/make/leaf.cfg

OBJS= $(C_O_FILES)
CLEAN_ADDITIONS += undefined.txt

all:    ${ARCH} $(PGM)

$(PGM): $(OBJS)
	$(make-exe)

# @test `cat undefined.txt | wc -l` -ne 0 && exit 1