Update of /cvsroot/linux-atm/linux-atm/src/arpd
In directory usw-pr-cvs1:/tmp/cvs-serv2637/src/arpd
Modified Files:
Tag: V2_4_0
Makefile.am
Log Message:
These changes combie libatmd and libatm into one library: libatm.. (Suggested
by Russell Coker)
Also fixed shared object build which had an undefined reference to 'now'..
Simply needed to define 'now' in src/lib/timer.c.. It is defined as extern
in src/include/atmd.h...
Lastly.. Added 'cscope' target to toplevel Makefile.am to create tags...
Index: Makefile.am
===================================================================
RCS file: /cvsroot/linux-atm/linux-atm/src/arpd/Attic/Makefile.am,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** Makefile.am 2001/09/03 18:41:05 1.1.2.1
--- Makefile.am 2001/10/04 21:17:26 1.1.2.2
***************
*** 1,3 ****
! LDADD = $(top_builddir)/src/lib/libatmd.la $(top_builddir)/src/lib/libatm.la
sbin_PROGRAMS = atmarp atmarpd
--- 1,3 ----
! LDADD = $(top_builddir)/src/lib/libatm.la
sbin_PROGRAMS = atmarp atmarpd
|