cvsuser     04/10/12 01:12:32

  Modified:    .        .cvsignore
               config/gen/makefiles root.in
               runtime/parrot/dynext .cvsignore
               src      .cvsignore
  Log:
  [perl #31916] [PATCH] minor cvsignore and progclean tweaks
  
  Added win32 cl pdb and ilk files.
  
  Added libnci.* (which includes libnci.dll, libnci.exp, libnci.lib,
  libnci.pdb and libnci.ilk).
  
  Added parrot_config.c.
  
  Changed $(DYNEXT_DIR)/$(LIBNCI_SO) to $(LIBNCI_SO), as LIBNCI_SO
  already contains DYNEXT_DIR.
  Added win32 cl collateral files to progclean.
  
  Courtesy of Ron Blaschke <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.35      +3 -0      parrot/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  RCS file: /cvs/public/parrot/.cvsignore,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -w -r1.34 -r1.35
  --- .cvsignore        23 Jun 2004 13:05:06 -0000      1.34
  +++ .cvsignore        12 Oct 2004 08:12:28 -0000      1.35
  @@ -6,6 +6,8 @@
   myconfig
   *.patch
   *.tmp
  +parrot.ilk
  +parrot.pdb
   test
   test.c
   test.o
  @@ -15,6 +17,7 @@
   test.out
   test.pdb
   vc60.pdb
  +vc70.pdb
   CFLAGS
   disassemble
   pbc_info
  
  
  
  1.253     +11 -2     parrot/config/gen/makefiles/root.in
  
  Index: root.in
  ===================================================================
  RCS file: /cvs/public/parrot/config/gen/makefiles/root.in,v
  retrieving revision 1.252
  retrieving revision 1.253
  diff -u -w -r1.252 -r1.253
  --- root.in   11 Oct 2004 10:44:32 -0000      1.252
  +++ root.in   12 Oct 2004 08:12:29 -0000      1.253
  @@ -1,4 +1,4 @@
  -# $Id: root.in,v 1.252 2004/10/11 10:44:32 leo Exp $
  +# $Id: root.in,v 1.253 2004/10/12 08:12:29 leo Exp $
   
   ###############################################################################
   #
  @@ -1118,11 +1118,20 @@
       $(SRC)/pbc_info$(O) $(PINFO) \
       $(PDB) $(SRC)/pdb$(O) \
       $(DIS) $(SRC)/disassemble$(O) \
  -    $(DYNEXT_DIR)/$(LIBNCI_SO)
  +    $(LIBNCI_SO)
        $(RM_F) $(LIBPARROT)
        $(PERL) build_tools/c2str.pl --init
        $(RM_F) $(STR_FILES) $(INC)/string_private_cstring.h
        $(RM_F) classes/*.c classes/*.h classes/*.dump vtable.dump
  +# win32 import library (shared object is deleted by LIBNCI_SO above)
  +     $(RM_F) $(DYNEXT_DIR)/libnci.lib
  +# win32 program data base - contains debugging info
  +     $(RM_F) *.pdb $(DYNEXT_DIR)/*.pdb
  +# win32 incremental link status files
  +     $(RM_F) *.ilk $(DYNEXT_DIR)/*.ilk
  +# win32 exported functions and data items
  +     $(RM_F) $(DYNEXT_DIR)/*.exp
  +
   
   testclean :
        $(RM_F) t/op/*.pasm
  
  
  
  1.2       +1 -0      parrot/runtime/parrot/dynext/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  RCS file: /cvs/public/parrot/runtime/parrot/dynext/.cvsignore,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- .cvsignore        27 Sep 2004 04:42:08 -0000      1.1
  +++ .cvsignore        12 Oct 2004 08:12:31 -0000      1.2
  @@ -1 +1,2 @@
   *.dylib
  +libnci.*
  
  
  
  1.7       +1 -0      parrot/src/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  RCS file: /cvs/public/parrot/src/.cvsignore,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -w -r1.6 -r1.7
  --- .cvsignore        30 Sep 2004 12:45:08 -0000      1.6
  +++ .cvsignore        12 Oct 2004 08:12:31 -0000      1.7
  @@ -5,4 +5,5 @@
   nci.c
   platform.c
   platform_asm.s
  +parrot_config.h
   *.str
  
  
  

Reply via email to