source: ada-examples/gen-soconn/Makefile @ 03ddb33

ada-examples-4-10-branchada-examples-4-9-branch
Last change on this file since 03ddb33 was 03ddb33, checked in by Joel Sherrill <joel.sherrill@…>, on 09/28/07 at 15:46:06

2007-09-28 Joel Sherrill <joel.sherrill@…>

  • Makefile: Fix typo in name of program.
  • init.c: Eliminate warning.
  • Property mode set to 100644
File size: 445 bytes
Line 
1#
2#  Makefile
3#
4
5#
6#  RTEMS_MAKEFILE_PATH is typically set in an environment variable
7#
8
9PGM=${ARCH}/gen-soccon.exe
10
11# optional managers required
12MANAGERS=all
13
14# C source names
15CSRCS = init.c gen-soccon.c
16COBJS = $(CSRCS:%.c=${ARCH}/%.o)
17
18include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
19include $(RTEMS_CUSTOM)
20include $(PROJECT_ROOT)/make/leaf.cfg
21
22OBJS= $(COBJS)
23
24CFLAGS += -DTARGET=\"RTEMS\"
25
26all:    ${ARCH} $(PGM)
27
28$(PGM): $(OBJS)
29        $(make-exe)
Note: See TracBrowser for help on using the repository browser.