From: Paul B. S. <pa...@us...> - 2001-10-04 21:17:28
|
Update of /cvsroot/linux-atm/linux-atm In directory usw-pr-cvs1:/tmp/cvs-serv2637 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/Attic/Makefile.am,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** Makefile.am 2001/10/03 19:49:30 1.1.2.2 --- Makefile.am 2001/10/04 21:17:25 1.1.2.3 *************** *** 11,12 **** --- 11,15 ---- @echo -n + cscope: + cscope -b -R + |