source: rtems/c/src/libnetworking/modem/Makefile.am @ 85a0f07

4.104.114.84.95
Last change on this file since 85a0f07 was 85a0f07, checked in by Joel Sherrill <joel.sherrill@…>, on 11/25/00 at 22:10:01

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: 791 bytes
Line 
1##
2## $Id $
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7LIBNAME = lib.a
8LIB = $(ARCH)/$(LIBNAME)
9
10C_FILES = ppp_tty.c ppp.c pppcompress.c
11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
12
13OBJS = $(C_O_FILES)
14
15include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
16include $(top_srcdir)/../../../automake/compile.am
17include $(top_srcdir)/../../../automake/lib.am
18
19#
20# Add local stuff here using +=
21#
22
23# DEFINES += -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS -DDIAGNOSTIC \
24#     -DBOOTP_COMPAT
25
26AM_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ \
27-D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS -DDIAGNOSTIC \
28-DBOOTP_COMPAT
29
30$(LIB): $(OBJS)
31        $(make-library)
32
33all-local: $(ARCH) $(OBJS) $(LIB)
34
35.PRECIOUS: $(LIB)
36
37EXTRA_DIST = ppp_tty.c ppp.c ppp.h pppcompress.c
38
39include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.