source: ada-examples/irq_test_c/Makefile @ 04eee9f

ada-examples-4-10-branch
Last change on this file since 04eee9f was 14f44a3, checked in by Joel Sherrill <joel.sherrill@…>, on 10/17/07 at 20:55:06

2007-10-17 Joel Sherrill <joel.sherrill@…>

  • Makefile, Makefile.shared, rtems_init.c, irq_test/interrupt_pkg.adb, irq_test/interrupt_pkg.ads, irq_test/irqforce.c, irq_test/irqtest.adb, rootfs/etc/hosts: Adding new tests as improvements are made to the RTEMS port of the GNAT run-time.
  • empty/Makefile, empty/README, empty/empty.adb, hello_via_task/.cvsignore, hello_via_task/Makefile, hello_via_task/hello.adb, irq_test/.cvsignore, irq_test/Makefile, irq_test/README, irq_test_c/.cvsignore, irq_test_c/Makefile, irq_test_c/README, irq_test_c/init.c, irq_test_c/irqforce.c: New files.
  • Property mode set to 100644
File size: 413 bytes
Line 
1#
2#  Makefile
3#
4
5#
6#  RTEMS_MAKEFILE_PATH is typically set in an environment variable
7#
8
9PGM=${ARCH}/c_irq_text.exe
10
11# optional managers required
12MANAGERS=all
13
14# C source names
15CSRCS = init.c irqforce.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
24all:    ${ARCH} $(PGM)
25
26$(PGM): $(OBJS)
27        $(make-exe)
Note: See TracBrowser for help on using the repository browser.