Questions tagged [nmake]

Nmake is a variant from Microsoft of Make build automation software.

NMAKE is a build automation tool for Microsoft Windows, included in Microsoft development tools such as Visual Studio.

See NMAKE reference.

519 questions
-1
votes
1 answer

How to add libharu to visual studio

I am not sure how I can include/use libHaru in my c++ project. https://github.com/libharu/libharu/wiki/Installation#Windows_except_cygwinMSYS. Do I need to run the nmake commands to make it work?
amanda45
  • 535
  • 10
  • 29
-1
votes
1 answer

Detect availablility of and from Developer Command prompt?

We have a Nmake-based makefile to help with testing under Visual Studio, including Visual Studio .Net/2002 through Visual Studio 2015. The makefile includes the following: CXXFLAGS = /nologo /W4 /wd4511 /D_MBCS /Zi /TP /GR /EHsc /MD /FI sdkddkver.h…
jww
  • 97,681
  • 90
  • 411
  • 885
-1
votes
2 answers

Visual Studio 2010 err# U1095, NMAKE

I'm writing a program in C using Visual Studio 2010, and I am getting the following error: U1095: expanded command line '(here come includes-includes-includes)'. Some of my colleagues get the same error while others do not. The only easy feasible…
-1
votes
1 answer

on Windows Qt Creator where do I enter commands like "cd" "nmake" and "configure"

I am on windows. I need to make a .exe standalone (static) executable from my completed Qt project. According to http://doc.qt.io/qt-5/windows-deployment.html to do this I have to do such things as enter this somewhere cd C:\path\to\Qt configure…
JoseOrtiz3
  • 1,785
  • 17
  • 28
-1
votes
5 answers

Looking for introduction of nmake & makefile structure

I am looking for some basic information regarding makefile structure. Any pointers will be highly appreciated. Thanks.
stranger
  • 39
  • 1
  • 2
-1
votes
1 answer

How to get dependency list in windows makefile

I have a linux makefile that I have to modify so that it compiles on windows with nmake and cl instead of gcc. From what I've seen in the make manual, $^ expands to the dependecy list for that given rule. However, it's not recognized by nmake. Could…
thehousedude
  • 611
  • 6
  • 16
-1
votes
1 answer

How to read a text file in NMAKE

I am new to scripting language. I would like to read contents of a text file using NMAKE and display it. Text file contains only single line of data. I have referred the following links, but its not working for me: Can't figure out how to read…
Raja
  • 61
  • 1
  • 5
-1
votes
1 answer

Pass macro to nmake

From my earlier post, I figured out why the command build /nmake "USER_C_FLAGS=/DMyVersion=3" doesn't associate the define MyVersion with value 3. MSDN says that - Compiling with /Dname= causes the symbol to not have an associated value. So,…
Mahesh
  • 34,573
  • 20
  • 89
  • 115
-2
votes
2 answers

filename, directory name or volume label syntax is incorrect

when I am running this .bat file on command prompt it is throwing an error i.e "The filename, directory name or volume label syntax is incorrect". Batch file contains-- nmake /nologo /f makefile /a pause makefile contains the following: # nmake…
1 2 3
34
35