source: rtems/cpukit/libnetworking/wrapup/Makefile.am @ f0864664

4.104.114.84.95
Last change on this file since f0864664 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: 806 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7if HAS_POSIX
8POSIX_PIECES = rtems_webserver
9endif
10
11NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers pppd modem \
12    $(POSIX_PIECES)
13OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o)
14LIB = $(ARCH)/libnetworking.a
15
16include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
17include $(top_srcdir)/../../../automake/compile.am
18include $(top_srcdir)/../../../automake/lib.am
19
20#
21# (OPTIONAL) Add local stuff here using +=
22#
23
24$(LIB): $(OBJS)
25        $(make-library)
26
27$(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a: $(LIB)
28        $(INSTALL_DATA) $< $@
29
30TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a
31
32all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
33
34.PRECIOUS: $(LIB)
35
36include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.