summaryrefslogtreecommitdiffstats
path: root/irq_test_c/Makefile
blob: 966a7f64bdb8d9b6f450e75d9af1a3de981770a5 (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
#
#  Ada IRQ Test (ERC32 Only)
#
#  See README.Makefiles in the main ada-examples directory.
#
#  $Id$
#

PGM=${ARCH}/c_irq_text.exe

# optional managers required
MANAGERS=all

# C source names
CSRCS = init.c irqforce.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)

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

OBJS= $(COBJS)

all:    ${ARCH} $(PGM)

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