summaryrefslogtreecommitdiffstats
path: root/classic_api/triple_period/Makefile
blob: ec1f0fdd10661f1db292bcf1d8dfd234b70dd9a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PGM=${ARCH}/triple_period.exe

# C source names, if any, go here -- minus the .c
CSRCS = init.c tasks.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)

H_FILES=system.h

OBJS=$(COBJS)

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

all:	${ARCH} $(PGM)

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