Update of /cvsroot/javaprofiler/library/src
In directory usw-pr-cvs1:/tmp/cvs-serv12170/src
Modified Files:
Makefile.rules dir.info
Log Message:
some parts completely rewritten;
changes in communication interface to make it faster;
ported to linux
Index: Makefile.rules
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/Makefile.rules,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** Makefile.rules 2001/08/24 17:54:04 1.8
--- Makefile.rules 2001/11/21 22:31:39 1.9
***************
*** 127,130 ****
--- 127,146 ----
$(MAKE) $(MFLAGS) gc clean
+ list.dir:
+ cd list
+ $(MAKE) $(MFLAGS)
+ cd ..
+
+ list.dir.2:
+ $(MAKE) $(MFLAGS) list
+
+ list.clean:
+ cd list
+ $(MAKE) $(MFLAGS) clean
+ cd ..
+
+ list.clean.2:
+ $(MAKE) $(MFLAGS) list clean
+
main.dir:
cd main
Index: dir.info
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/dir.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** dir.info 2001/09/02 20:14:21 1.14
--- dir.info 2001/11/21 22:31:40 1.15
***************
*** 1,9 ****
! DIRS = profiler alloc allocator commun commun2 commun3 cpu delay gc main mon \
! prof setup shared string
FILES = do_link
OBJ_FILES = profiler/*.o* alloc/*.o* allocator/*.o* commun/*.o* commun2/*.o* \
! commun3/*.o* cpu/*.o* delay/*.o* gc/*.o* main/*.o* mon/*.o* \
! prof/*.o* setup/*.o* shared/*.o* string/*.o*
--- 1,9 ----
! DIRS = profiler alloc allocator commun commun2 commun3 cpu delay gc list main \
! mon prof setup shared string
FILES = do_link
OBJ_FILES = profiler/*.o* alloc/*.o* allocator/*.o* commun/*.o* commun2/*.o* \
! commun3/*.o* cpu/*.o* delay/*.o* gc/*.o* list/*.o* main/*.o* \
! mon/*.o* prof/*.o* setup/*.o* shared/*.o* string/*.o*
|