|
From: Marek P. <ma...@us...> - 2001-08-09 23:22:58
|
Update of /cvsroot/javaprofiler/library/src
In directory usw-pr-cvs1:/tmp/cvs-serv7456/src
Modified Files:
Makefile.rules dir.info
Log Message:
no message
Index: Makefile.rules
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/Makefile.rules,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** Makefile.rules 2001/07/28 04:11:17 1.5
--- Makefile.rules 2001/08/09 23:22:55 1.6
***************
*** 63,66 ****
--- 63,82 ----
$(MAKE) $(MFLAGS) commun2 clean
+ commun3.dir:
+ cd commun3
+ $(MAKE) $(MFLAGS)
+ cd ..
+
+ commun3.dir.2:
+ $(MAKE) $(MFLAGS) commun3
+
+ commun3.clean:
+ cd commun3
+ $(MAKE) $(MFLAGS) clean
+ cd ..
+
+ commun3.clean.2:
+ $(MAKE) $(MFLAGS) commun3 clean
+
cpu.dir:
cd cpu
Index: dir.info
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/dir.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** dir.info 2001/07/28 04:11:17 1.10
--- dir.info 2001/08/09 23:22:55 1.11
***************
*** 1,3 ****
! DIRS = profiler alloc allocator commun commun2 cpu gc main \
prof setup shared string
--- 1,3 ----
! DIRS = profiler alloc allocator commun commun2 commun3 cpu gc main \
prof setup shared string
***************
*** 5,7 ****
OBJ_FILES = profiler/*.o* alloc/*.o* allocator/*.o* commun/*.o* commun2/*.o* \
! cpu/*.o* gc/*.o* main/*.o* prof/*.o* setup/*.o* shared/*.o* string/*.o*
--- 5,8 ----
OBJ_FILES = profiler/*.o* alloc/*.o* allocator/*.o* commun/*.o* commun2/*.o* \
! commun3/*.o* cpu/*.o* gc/*.o* main/*.o* prof/*.o* setup/*.o* \
! shared/*.o* string/*.o*
|