2007-06-27 16:00 UTC+0200 J. Lefebvre Mafact (jfl/at/mafact.com)

* harbour/makefile.vc
    * Setting file extensions variables without double quotes for nmake (Will overide those in common.mak)
This commit is contained in:
Jean-Francois Lefebvre
2007-06-27 14:05:33 +00:00
parent 8b5cf06681
commit a611be366f
2 changed files with 30 additions and 0 deletions

View File

@@ -8,6 +8,13 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-06-27 16:00 UTC+0200 J. Lefebvre Mafact (jfl/at/mafact.com)
* harbour/makefile.vc
* Setting file extensions variables without double quotes for nmake
Will overide those in common.mak
2007-06-27 10:05 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rtl/hbgtcore.c
* harbour/source/rtl/gtdos/gtdos.c

View File

@@ -149,6 +149,29 @@ LDFLAGSDLL = /DEBUG $(LDFLAGSDLL)
# Include Common Object list files
# shared between Msvc and Borland
#
# binary file suffixes and prefixes for nMake !!!
#
!ifndef OBJEXT
OBJEXT=.obj
!endif
!ifndef EXEEXT
EXEEXT=.exe
!endif
!ifndef DLLEXT
DLLEXT=.dll
!endif
!ifndef LIBEXT
LIBEXT=.lib
!endif
!ifndef LIBPREF
LIBPREF=
!endif
!include common.mak
#**********************************************************