summaryrefslogtreecommitdiffstats
path: root/misc/x86_display_cpu/Makefile
blob: 8635966df3c7b9201bce373ef9fa5cdbf279b648 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
#  RTEMS_MAKEFILE_PATH is typically set in an environment variable
#

PGM=${ARCH}/display_cpu.exe

# optional managers required
MANAGERS=all

# C source names
SRCS = test.c
OBJS = $(SRCS:%.[cS]=${ARCH}/%.o)

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

all:    ${ARCH} $(PGM)

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