source: rtems/testsuites/samples/pppd/Makefile.am @ 2d0bc83

5
Last change on this file since 2d0bc83 was 2d0bc83, checked in by Sebastian Huber <sebastian.huber@…>, on 03/30/18 at 18:42:21

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.

  • Property mode set to 100644
File size: 542 bytes
Line 
1
2rtems_tests_PROGRAMS = pppd
3pppd_SOURCES = init.c pppdapp.c netconfig.h system.h
4
5include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
6include $(top_srcdir)/../automake/compile.am
7include $(top_srcdir)/../automake/leaf.am
8
9
10pppd_LDLIBS = -lpppd
11
12AM_CPPFLAGS += -I$(top_srcdir)/../support/include
13AM_CPPFLAGS += -I$(RTEMS_SOURCE_ROOT)/cpukit/libnetworking
14
15LINK_OBJS = $(pppd_OBJECTS)
16LINK_LIBS = $(pppd_LDLIBS)
17
18pppd$(EXEEXT): $(pppd_OBJECTS) $(pppd_DEPENDENCIES)
19        @rm -f pppd$(EXEEXT)
20        $(make-exe)
21
22
23include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.