cvsuser     03/09/05 01:17:58

  Modified:    config/gen/makefiles root.in
  Log:
  2 new Makefile targets: world, utils
  
  Revision  Changes    Path
  1.116     +8 -2      parrot/config/gen/makefiles/root.in
  
  Index: root.in
  ===================================================================
  RCS file: /cvs/public/parrot/config/gen/makefiles/root.in,v
  retrieving revision 1.115
  retrieving revision 1.116
  diff -u -w -r1.115 -r1.116
  --- root.in   2 Sep 2003 16:41:13 -0000       1.115
  +++ root.in   5 Sep 2003 08:17:58 -0000       1.116
  @@ -153,8 +153,12 @@
   TEST_PROG = ${test_prog}${exe}
   TEST_PROG_SO = ${test_prog}_so${exe}
   LIBPARROT = ${blib_lib_libparrot_a}
  +# utils
  +DIS=disassemble${exe}
   PDUMP = pdump${exe}
   PINFO = pbc_info${exe}
  +PDB = pdb${exe}
  +
   IMCC_PROG = languages/imcc/imcc${exe}
   
   # lclint has changed name to splint at v3.0
  @@ -188,6 +192,10 @@
   
   all : flags_dummy $(TEST_PROG) $(IMCC_PROG) docs
   
  +world: all utils
  +
  +utils: $(PDUMP) $(DIS) $(PINFO) $(PDB)
  +
   flags_dummy:
        echo Compiling with:
        @$(PERL) tools/dev/cc_flags.pl ./CFLAGS echo $(CFLAGS) xx$(O) -c xx.c
  @@ -270,7 +278,6 @@
   #
   # Parrot Debugger
   #
  -PDB=pdb${exe}
   
   pdb$(O) : $(GENERAL_H_FILES)
   
  @@ -280,7 +287,6 @@
   #
   # Parrot Disassembler
   #
  -DIS=disassemble${exe}
   
   disassemble$(O) : $(GENERAL_H_FILES)
   
  
  
  

Reply via email to