summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/capture/Makefile.am
blob: 75b95ad9010b189c21cf7f1e6662b1cf86a8979e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
##
##  $Id$
##

MANAGERS = all

rtems_tests_PROGRAMS = capture.exe
capture_exe_SOURCES = init.c test1.c system.h

dist_rtems_tests_DATA = capture.scn
dist_rtems_tests_DATA += capture.doc

include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am

capture_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)

LINK_OBJS = $(capture_exe_OBJECTS) $(capture_exe_LDADD)
LINK_LIBS = $(capture_exe_LDLIBS)

capture.exe$(EXEEXT): $(capture_exe_OBJECTS) $(capture_exe_DEPENDENCIES)
	@rm -f capture.exe$(EXEEXT)
	$(make-exe)

include $(top_srcdir)/../automake/local.am