Thread overview
tools.ini
Jan 02, 2003
Robert M. Münch
Jan 02, 2003
Frank Albe
Jan 03, 2003
Robert M. Münch
January 02, 2003
Hi, I just saw a reference to tools.ini in the docs and recognized that I'm missing this file :-|. Before I start to collect everything together and hunt the errors would anybody be so kind and show me how your tools.ini looks like? Would be very nice :-)). Thanks a lot.

--
Robert M. Münch
IT & Management Freelancer
Mobile: +49 (0)177 2452 802
Fax   : +49 (0)721 8408 9112
Web   : http://www.robertmuench.de


January 02, 2003
On Thu, 2 Jan 2003 12:18:07 +0100, "Robert M. Münch" <robert.muench@robertmuench.de> wrote:

>Hi, I just saw a reference to tools.ini in the docs and recognized that I'm missing this file :-|. Before I start to collect everything together and hunt the errors would anybody be so kind and show me how your tools.ini looks like? Would be very nice :-)). Thanks a lot.

------------------------8< snip >8------------------------
[SMAKE]

; macros

CC=sc
AS=ml
RC=rcc
CPP=sc
CXX=sc

AFLAGS=
CFLAGS=
CPPFLAGS=
CXXFLAGS=
RFLAGS=

; inference rules

.asm.exe:
   $(AS) $(AFLAGS) $*.asm

.asm.obj:
   $(AS) $(AFLAGS) /c $*.asm

.c.exe:
   $(CC) $(CFLAGS) $*.c

.c.obj:
   $(CC) $(CFLAGS) -c $*.c

.cpp.exe:
   $(CPP) $(CPPFLAGS) $*.cpp

.cpp.obj:
   $(CPP) $(CPPFLAGS) -c $*.cpp

.cxx.exe:
   $(CXX) $(CXXFLAGS) $*.cxx

.cxx.obj:
   $(CXX) $(CXXFLAGS) -c $*.cxx

.rc.res:
   $(RC) $(RFLAGS) $*

; suffixes

.SUFFIXES: .exe .obj .asm .c .cpp .cxx .res .rc

.LONGCOMMANDLINE: sc link lib cl rcc
------------------------8< snip >8------------------------

 ../frank
January 03, 2003
"Frank Albe" <falbe@mindspring.com> schrieb im Newsbeitrag news:a9a91v0smlc41uhumb0agn9ptgdg7lafgu@4ax.com...

> ------------------------8< snip >8------------------------
> ...

:-)) Thanks a lot. Robert