forked from Imagelibrary/rtems
A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
24 lines
542 B
Makefile
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
|