source: rtems/cpukit/pppd/Makefile.am @ dc7fb59b

4.104.114.84.95
Last change on this file since dc7fb59b was 01d48bf8, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:49:43

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • net/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5
6
7
8
9LIBNAME = lib.a
10LIB = $(ARCH)/$(LIBNAME)
11
12C_FILES = auth.c ccp.c chap.c chap_ms.c chat.c demand.c fsm.c ipcp.c lcp.c \
13    magic.c options.c upap.c md4.c md5.c utils.c sys-rtems.c rtemsmain.c \
14    rtemspppd.c
15C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
16
17OBJS = $(C_O_FILES)
18
19include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
20include $(top_srcdir)/../../../automake/compile.am
21include $(top_srcdir)/../../../automake/lib.am
22
23#
24# Add local stuff here using +=
25#
26
27$(LIB): $(OBJS)
28        $(make-library)
29
30all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
31
32.PRECIOUS: $(LIB)
33
34EXTRA_DIST = auth.c ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h \
35chat.c demand.c fsm.c fsm.h ipcp.c ipcp.h ipxcp.c ipxcp.h \
36lcp.c lcp.h magic.c magic.h md4.c md4.h md5.c md5.h options.c \
37patchlevel.h pathnames.h pppd.h rtemsdialer.h rtemsmain.c rtemspppd.c \
38rtemspppd.h sys-rtems.c upap.c upap.h utils.c
39
40include_HEADERS = rtemspppd.h rtemsdialer.h
41
42
43PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
44
45$(PROJECT_INCLUDE)/%.h: %.h
46        $(INSTALL_DATA) $< $@
47
48include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.