mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-26 04:39:28 +08:00
25 lines
535 B
Makefile
25 lines
535 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
rtems_tests_PROGRAMS = tar03
|
|
tar03_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = tar03.scn
|
|
dist_rtems_tests_DATA += tar03.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(tar03_OBJECTS) $(tar03_LDADD)
|
|
LINK_LIBS = $(tar03_LDLIBS)
|
|
|
|
tar03$(EXEEXT): $(tar03_OBJECTS) $(tar03_DEPENDENCIES)
|
|
@rm -f tar03$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|