mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-27 05:21:03 +08:00
* ftp01/Makefile.am: Re-add ftpd01_LDADD (Fix breakage introduced by previous patch).
28 lines
598 B
Makefile
28 lines
598 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
rtems_tests_PROGRAMS = ftp01
|
|
ftp01_SOURCES = init.c
|
|
ftp01_LDADD = -lftpd
|
|
|
|
dist_rtems_tests_DATA = ftp01.scn
|
|
dist_rtems_tests_DATA += ftp01.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
|
|
AM_CPPFLAGS += -I$(top_srcdir)/termios04
|
|
|
|
LINK_OBJS = $(ftp01_OBJECTS) $(ftp01_LDADD)
|
|
LINK_LIBS = $(ftp01_LDLIBS)
|
|
|
|
ftp01$(EXEEXT): $(ftp01_OBJECTS) $(ftp01_DEPENDENCIES)
|
|
@rm -f ftp01$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|