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

4.104.114.84.95
Last change on this file since c55df85 was b68e01c5, checked in by Joel Sherrill <joel.sherrill@…>, on 09/27/01 at 13:28:22

2001-09-23 Ralf Corsepius <corsepiu@…>

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