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

4.104.114.84.95
Last change on this file since a6abd67 was a6abd67, checked in by Joel Sherrill <joel.sherrill@…>, on 11/25/00 at 19:42:21

2000-11-25 Antti P Miettinen <antti.p.miettinen@…>

  • wrapup/Makefile.am: Added modem subdir.
  • configure.in, Makefile.am: Added modem subdir.
  • net/Makefile.am: Added if_pppvar.h, pppcompress.h.
  • pppd/Makefile.am: Added pppmain.c (which needs work).
  • pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c, pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler <Thomas.Doerfler@…> and cosmetic changes by me. Actually main.c and ppp_tty.c should be scratched. The modem subdir has the real ppp_tty.c and the real pppd main is in pppmain.c.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7LIBNAME = lib.a
8LIB = $(ARCH)/$(LIBNAME)
9
10# renamed main.c to pppmain.c
11C_FILES = auth.c cbcp.c ccp.c chap.c chap_ms.c chat.c demand.c fsm.c ipcp.c \
12    ipxcp.c lcp.c magic.c options.c upap.c md4.c md5.c rtems-ppp.c \
13    pppmain.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# DEFINES += -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS -DDIAGNOSTIC \
27#     -DBOOTP_COMPAT
28
29$(LIB): $(OBJS)
30        $(make-library)
31
32EXTRA_FILES = modem_example/16550.h modem_example/README \
33    modem_example/modem.c modem_example/modem.h modem_example/ppp.c \
34    modem_example/ppp.h modem_example/pppcompress.c
35
36all-local: $(ARCH) $(OBJS) $(LIB)
37
38.PRECIOUS: $(LIB)
39
40EXTRA_DIST = README STATUS auth.c cbcp.c cbcp.h ccp.c ccp.h chap.c chap.h \
41    chap_ms.c chap_ms.h chat.c demand.c fsm.c fsm.h ipcp.c ipcp.h ipxcp.c \
42    ipxcp.h lcp.c lcp.h magic.c magic.h main.c md4.c md4.h md5.c md5.h \
43    options.c patchlevel.h pathnames.h ppp_tty.c pppd.h rtems-ppp.c upap.c \
44    upap.h pppmain.c $(EXTRA_FILES)
45
46include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.