Author: Larry LindstromLarry Lindstrom
Date: Apr 2, 2008 10:30
Hi Folks:
As I was fading away in the early hours of the morning, I
accidentally posted this to the UI newsgroup, instead of here.
Developing with VS 2008.
I've used make, on my Unix projects, but I've never gotten more
than Ankle deep in it's exotic features. I just identify the target,
the dependencies, and the commands to execute.
I've never used nmake in one of my projects, but I have built
libtommath using the version that came with VC6.
Now I'd like to re-build libtommath, with VS 2008, but I'm getting
this error.
NMAKE : fatal error U1100: macro '$@' is illegal in the context of batch
rule '.c.obj'
The make file that comes with libtommath looks like this:
---
CFLAGS = /I. /Ox /DWIN32 /W3 /Fo$@
default: library
|