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

ada-examples-4-10-branch
Last change on this file since 92f495a was f421fee, checked in by Joel Sherrill <joel.sherrill@…>, on 09/15/09 at 21:11:42

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

  • .cvsignore, ChangeLog?, Makefile, README, commands.adb, commands.ads, config.h, main.adb, rtems_shell.ads, shell_init.c: New files.
  • Property mode set to 100644
File size: 774 bytes
Line 
1#
2# $Id$
3#
4
5PROGRAM=shell
6
7include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
8include $(RTEMS_CUSTOM)
9include $(PROJECT_ROOT)/make/leaf.cfg
10
11LINKARGS += -ltelnetd
12
13# stack size for the first Ada thread
14CFLAGS +=-DGNAT_MAIN_STACKSPACE=100
15
16# initialize the network stack -- assumes existence of networkconfig.h
17CFLAGS +=-DMAIN_USE_NETWORKING=1
18
19# Should we prompt for command line arguments?
20# DEFINES +=-DMAIN_USE_REQUIRES_COMMAND_LINE
21
22# If you want to hard-code the command line, define this to a string
23# DEFINES += -DMAIN_COMMAND_LINE="ARGS"
24
25# Do we have extra configuration?
26DEFINES += -DHAS_EXTRA_CONFIGURATION
27
28# Some tests need to be able to do a gethostbyname
29NEED_ROOTFS_FOR_HOST_INFO=yes
30
31EXTRA_OBJS=shell_init.o
32
33include ../Makefile.shared
34
35shell_init.o: shell_init.c
Note: See TracBrowser for help on using the repository browser.