source: rtems/cpukit/pppd/Makefile.am @ 299a523f

4.104.114.84.95
Last change on this file since 299a523f was 2b44af21, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 06:03:16

2002-08-11 Ralf Corsepius <corsepiu@…>

  • pppd/Makefile.am: Use .$(OBJEXT) instead of .o.
    • rtems_servers/Makefile.am: Use .$(OBJEXT) instead of .o.
    • rtems_telnetd/Makefile.am: Use .$(OBJEXT) instead of .o.
    • rtems_webserver/Makefile.am: Use .$(OBJEXT) instead of .o.
    • wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
  • 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)/%.$(OBJEXT))
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.