summaryrefslogtreecommitdiff
path: root/gen-soconn/Makefile
blob: 4e7ae3430371feb2291c90b666df79ea38d26008 (plain)
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
#
#  Makefile
#

#
#  RTEMS_MAKEFILE_PATH is typically set in an environment variable
#

PGM=${ARCH}/gen-soccon.exe

# optional managers required
MANAGERS=all

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

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

OBJS= $(COBJS)

CFLAGS += -DTARGET=\"RTEMS\"

all:    ${ARCH} $(PGM)

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