bug-commoncpp
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Patch: Fix w32/Makefile.bcc error in clean target when -DBMODE=DEBUG


From: Conrad T. Pino
Subject: Patch: Fix w32/Makefile.bcc error in clean target when -DBMODE=DEBUG
Date: Fri, 16 Sep 2005 15:28:26 -0700

The following patch was committed on the trunk.

Index: ChangeLog
===================================================================
RCS file: /cvsroot/gnutelephony/testing/commoncpp2/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -p -r1.18 -r1.19
--- ChangeLog   1 Sep 2005 05:58:01 -0000       1.18
+++ ChangeLog   16 Sep 2005 19:23:45 -0000      1.19
@@ -1,4 +1,5 @@
 From Common C++ 1.3.18 to 1.3.19
+- fix w32/Makefile.bcc error in clean target when -DBMODE=DEBUG
 - fix tests/thread1.cpp to compile with Microsoft Visual C++ 6.0
 - fix Microsoft build file line end convention from -kb to -ko
 - fix for w32 TCPSession connect issue
Index: w32/Makefile.bcc
===================================================================
RCS file: /cvsroot/gnutelephony/testing/commoncpp2/w32/Makefile.bcc,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- w32/Makefile.bcc    30 Aug 2005 13:11:14 -0000      1.2
+++ w32/Makefile.bcc    16 Sep 2005 19:23:45 -0000      1.3
@@ -118,14 +118,16 @@ ALLLIBS=$(LIBFILES) import32.lib $(BCC32
 ALLLIBS1=$(ALLLIBS)
 ALLLIBS2=$(ALLLIBS) $(LIBBASE1).lib
 
-all: dirs $(RESFILE) $(PROJECT1) $(PROJECT2) cleanrel
+all: dirs $(RESFILE) $(PROJECT1) $(PROJECT2) cleansym
 
 cleanobj:: 
        address@hidden Deleting intermediate files for project
        address@hidden exist $(OBJ)\*.obj del $(OBJ)\*.obj
 
-cleanrel:: 
-!if $(BMODE) == RELEASE
+cleansym:: 
+!if $(BMODE) == DEBUG
+       address@hidden Keeping symbol files for project
+!elif $(BMODE) == RELEASE
        address@hidden Deleting symbol files for project
        address@hidden exist $(BIN)\*.tds del $(BIN)\*.tds
        address@hidden exist $(BIN)\*.map del $(BIN)\*.map




reply via email to

[Prev in Thread] Current Thread [Next in Thread]