You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2001/07/27 20:37:11 UTC

cvs commit: apr/test MakeWin32Make.pl aprtest.dsp aprtest.h aprtest.win

wrowe       01/07/27 11:37:11

  Modified:    test     MakeWin32Make.pl aprtest.dsp aprtest.h aprtest.win
  Log:
    Improve ourselves
  
  Revision  Changes    Path
  1.13      +4 -2      apr/test/MakeWin32Make.pl
  
  Index: MakeWin32Make.pl
  ===================================================================
  RCS file: /home/cvs/apr/test/MakeWin32Make.pl,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- MakeWin32Make.pl	2001/06/06 19:55:36	1.12
  +++ MakeWin32Make.pl	2001/07/27 18:37:11	1.13
  @@ -17,8 +17,8 @@
           $t = "";
       }
       if ($t =~ m|^LOCAL_LIBS=|) {
  -        $t = "LOCAL_LIBS=\n"
  -           . "ALL_LIBS=../LibD/apr.lib kernel32\.lib user32\.lib advapi32\.lib ws2_32\.lib wsock32\.lib ole32\.lib\n\n";
  +        $t = "LOCAL_LIBS=../LibD/apr.lib\n"
  +           . "ALL_LIBS=kernel32\.lib user32\.lib advapi32\.lib ws2_32\.lib wsock32\.lib ole32\.lib\n\n";
       }
       if ($t =~ s|\@CFLAGS\@||) {
           $t = "";
  @@ -55,3 +55,5 @@
   
   undef $srcfl;
   undef $dstfl;
  +
  +print "Generated Makefile from Makefile.in\n";
  
  
  
  1.11      +4 -4      apr/test/aprtest.dsp
  
  Index: aprtest.dsp
  ===================================================================
  RCS file: /home/cvs/apr/test/aprtest.dsp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- aprtest.dsp	2001/07/27 07:12:29	1.10
  +++ aprtest.dsp	2001/07/27 18:37:11	1.11
  @@ -39,8 +39,8 @@
   # PROP Use_Debug_Libraries 0
   # PROP Output_Dir "Release"
   # PROP Intermediate_Dir "Release"
  -# PROP Cmd_Line "NMAKE /f aprtest.win /a"
  -# PROP Rebuild_Opt ""
  +# PROP Cmd_Line "NMAKE /f aprtest.win"
  +# PROP Rebuild_Opt "/a"
   # PROP Bsc_Name ""
   # PROP Target_Dir ""
   
  @@ -57,8 +57,8 @@
   # PROP Use_Debug_Libraries 1
   # PROP Output_Dir "Debug"
   # PROP Intermediate_Dir "Debug"
  -# PROP Cmd_Line "NMAKE /f aprtest.win /a"
  -# PROP Rebuild_Opt ""
  +# PROP Cmd_Line "NMAKE /f aprtest.win"
  +# PROP Rebuild_Opt "/a"
   # PROP Bsc_Name ""
   # PROP Target_Dir ""
   
  
  
  
  1.3       +1 -1      apr/test/aprtest.h
  
  Index: aprtest.h
  ===================================================================
  RCS file: /home/cvs/apr/test/aprtest.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- aprtest.h	2001/07/27 17:46:01	1.2
  +++ aprtest.h	2001/07/27 18:37:11	1.3
  @@ -1,4 +1,4 @@
  -/* ====================================================================
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
  
  
  
  1.2       +6 -3      apr/test/aprtest.win
  
  Index: aprtest.win
  ===================================================================
  RCS file: /home/cvs/apr/test/aprtest.win,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- aprtest.win	2000/12/04 22:26:52	1.1
  +++ aprtest.win	2001/07/27 18:37:11	1.2
  @@ -5,11 +5,14 @@
   # E.g. add c:\program files\perl\bin to the list of directories
   
   !IF "$(TARGET)" == ""
  -TARGET=all
  +TARGET=ALL
   !ENDIF 
   
  -all: Makefile
  +$(TARGET): Makefile
   	$(MAKE) /nologo /f Makefile $(TARGET)
   
  -Makefile: Makefile.in
  +Makefile: Makefile.in MakeWin32Make.pl
   	perl MakeWin32Make.pl
  +
  +clean:
  +        del makefile *.obj *.exe *.idb *.pdb
  \ No newline at end of file