source: rtems/c/src/libnetworking/pppd/Makefile.am @ 6a8e52d

4.104.114.84.95
Last change on this file since 6a8e52d was 6a8e52d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 12:12:10

2003-08-16 Ralf Corsepius <corsepiu@…>

Makefile.am: Reflect having moved automake.
pppd/Makefile.am: Reflect having moved automake.
rtems_servers/Makefile.am: Reflect having moved automake.
rtems_telnetd/Makefile.am: Reflect having moved automake.
rtems_webserver/Makefile.am: Reflect having moved automake.
wrapup/Makefile.am: Reflect having moved automake.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1##
2## $Id$
3##
4
5LIBNAME = lib.a
6LIB = $(ARCH)/$(LIBNAME)
7
8C_FILES = auth.c ccp.c chap.c chap_ms.c chat.c demand.c fsm.c ipcp.c lcp.c \
9    magic.c options.c upap.c md4.c md5.c utils.c sys-rtems.c rtemsmain.c \
10    rtemspppd.c
11OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13include $(top_srcdir)/automake/compile.am
14include $(top_srcdir)/automake/lib.am
15
16#
17# Add local stuff here using +=
18#
19
20if HAS_NETWORKING
21include_HEADERS = rtemspppd.h rtemsdialer.h
22
23$(LIB): $(OBJS)
24        $(make-library)
25
26all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
27endif
28
29.PRECIOUS: $(LIB)
30
31EXTRA_DIST = auth.c ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h \
32chat.c demand.c fsm.c fsm.h ipcp.c ipcp.h ipxcp.c ipxcp.h \
33lcp.c lcp.h magic.c magic.h md4.c md4.h md5.c md5.h options.c \
34patchlevel.h pathnames.h pppd.h rtemsdialer.h rtemsmain.c rtemspppd.c \
35rtemspppd.h sys-rtems.c upap.c upap.h utils.c
36
37PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
38
39$(PROJECT_INCLUDE)/%.h: %.h
40        $(INSTALL_DATA) $< $@
41
42include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.