source: ada-examples/ada_from_c_task/Makefile @ 92f495a

ada-examples-4-10-branch
Last change on this file since 92f495a was d4c4aba, checked in by Joel Sherrill <joel.sherrill@…>, on 09/17/09 at 18:13:31

2009-09-17 Joel Sherrill <joel.sherrill@…>

  • Makefile, ada_from_c.adb, app.c: Make follow standard RTEMS test output format. Add output screens where appropriate.
  • ada_from_c_task.scn: New file.
  • Property mode set to 100644
File size: 844 bytes
Line 
1#
2#  Makefile for Ada Dump URL example
3#
4#  See README.Makefiles in the main ada-examples directory.
5#
6#  $Id$
7#
8
9PROGRAM=ada_from_c
10
11include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
12include $(RTEMS_CUSTOM)
13include $(PROJECT_ROOT)/make/leaf.cfg
14
15# stack size for the first Ada thread
16CFLAGS +=-DGNAT_MAIN_STACKSPACE=100
17
18# initialize the network stack -- assumes existence of networkconfig.h
19# CFLAGS +=-DMAIN_USE_NETWORKING=1
20
21# Should we prompt for command line arguments?
22# DEFINES +=-DMAIN_USE_REQUIRES_COMMAND_LINE
23
24# Do we have a C initialization helper?
25DEFINES +=-DMAIN_CALL_C_INITIALIZE_APPLICATION
26
27# Do we have extra configuration?
28DEFINES +=-DHAS_EXTRA_CONFIGURATION
29
30# If you want to hard-code the command line, define this to a string
31# DEFINES += -DMAIN_COMMAND_LINE="ARGS"
32
33EXTRA_OBJS=app.o
34
35include ../Makefile.shared
36
37app.o: app.c
Note: See TracBrowser for help on using the repository browser.