Files
rtems/testsuites/samples/pppd/Makefile.am
Sebastian Huber 2d0bc839ed build: Remove EXTRA_DIST
A "make dist" is not supported. So, it makes no sense to have pure "make
dist" related stuff in the Makefile.am.
2018-04-04 10:09:04 +02:00

24 lines
542 B
Makefile

rtems_tests_PROGRAMS = pppd
pppd_SOURCES = init.c pppdapp.c netconfig.h system.h
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
pppd_LDLIBS = -lpppd
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
AM_CPPFLAGS += -I$(RTEMS_SOURCE_ROOT)/cpukit/libnetworking
LINK_OBJS = $(pppd_OBJECTS)
LINK_LIBS = $(pppd_LDLIBS)
pppd$(EXEEXT): $(pppd_OBJECTS) $(pppd_DEPENDENCIES)
@rm -f pppd$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am