diff --git a/harbour/ChangeLog b/harbour/ChangeLog index dfaf1415df..2d06139763 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,13 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +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 diff --git a/harbour/makefile.vc b/harbour/makefile.vc index 7c0ce6fa3f..8acafdad8b 100644 --- a/harbour/makefile.vc +++ b/harbour/makefile.vc @@ -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 #**********************************************************