source: rtems/testsuites/samples/hello/Makefile.am @ dd61160

4.104.114.84.95
Last change on this file since dd61160 was dd61160, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/07 at 19:45:50

2007-05-11 Joel Sherrill <joel.sherrill@…>

  • base_sp/Makefile.am, hello/Makefile.am, iostream/Makefile.am, loopback/Makefile.am, nsecs/Makefile.am, pppd/Makefile.am, ticker/Makefile.am, ticker/system.h, unlimited/Makefile.am: Add optional managers to Makefiles. Clean up test cases so last output line follows END OF pattern. Make sure test case all run. All tests appeared ok on sis.
  • nsecs/init.c: Commit hack so test will compile when POSIX is disabled. Remove hack when clock_gettime() is present even when --disable-posix.
  • Property mode set to 100644
File size: 623 bytes
Line 
1##
2##  $Id$
3##
4
5MANAGERS = io semaphore
6
7rtems_tests_PROGRAMS = hello.exe
8hello_exe_SOURCES = init.c system.h
9
10dist_rtems_tests_DATA = hello.scn
11dist_rtems_tests_DATA += hello.doc
12
13include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
14include $(top_srcdir)/../automake/compile.am
15include $(top_srcdir)/../automake/leaf.am
16
17hello_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
18
19LINK_OBJS = $(hello_exe_OBJECTS) $(hello_exe_LDADD)
20LINK_LIBS = $(hello_exe_LDLIBS)
21
22hello.exe$(EXEEXT): $(hello_exe_OBJECTS) $(hello_exe_DEPENDENCIES)
23        @rm -f hello.exe$(EXEEXT)
24        $(make-exe)
25
26include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.