From: Marek P. <ma...@us...> - 2002-01-31 12:31:33
|
Update of /cvsroot/javaprofiler/library/src In directory usw-pr-cvs1:/tmp/cvs-serv27034/src Modified Files: Makefile.rules dir.info Log Message: calltree Index: Makefile.rules =================================================================== RCS file: /cvsroot/javaprofiler/library/src/Makefile.rules,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** Makefile.rules 2001/11/21 22:31:39 1.9 --- Makefile.rules 2002/01/31 12:30:59 1.10 *************** *** 31,34 **** --- 31,50 ---- $(MAKE) $(MFLAGS) allocator clean + calltree.dir: + cd calltree + $(MAKE) $(MFLAGS) + cd .. + + calltree.dir.2: + $(MAKE) $(MFLAGS) calltree + + calltree.clean: + cd calltree + $(MAKE) $(MFLAGS) clean + cd .. + + calltree.clean.2: + $(MAKE) $(MFLAGS) calltree clean + commun.dir: cd commun Index: dir.info =================================================================== RCS file: /cvsroot/javaprofiler/library/src/dir.info,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** dir.info 2001/11/21 22:31:40 1.15 --- dir.info 2002/01/31 12:30:59 1.16 *************** *** 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* --- 1,9 ---- ! DIRS = profiler alloc allocator calltree commun commun2 commun3 cpu delay gc \ ! list main mon prof setup shared string FILES = do_link ! OBJ_FILES = profiler/*.o* alloc/*.o* allocator/*.o* calltree/*.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* |