Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
7k views

How do I utilise all the cores for nmake?

I just got a new quad core computer and noticed that nmake is only using 1 process. I used to use make which had the switch -j4 for launching 4 processes. What is the nmake equivalent? [edit] Based ...
12
votes
2answers
2k views

How to organize the project tree for a C++ project using nmake?

There seems to be two major conventions for organizing project files and then many variations. Convention 1: High-level type directories, project sub-directories For example, the wxWidgets project ...
5
votes
2answers
178 views

Compile multiple **changed** source files at once in GNU make

I know there have been several questions with similar titles but none seem to provide an answer to what I need (correct me if I'm wrong). Consider this makefile: SOURCES=file1.cpp file2.cpp ...
5
votes
3answers
11k views

Convert nmake makefile into Visual Studio 2005 project

We have some old C code here that's built with nmake. Is there an automated way to pull the Makefile into Visual Studio 2005 and create a project? Some searching on MSDN indicates VS6 could do this, ...
4
votes
7answers
727 views

Converting FORTRAN to C / C++

As part of my Final Year Project, I need to convert some FORTRAN code into C or C++ (it doesn't matter which language as long as I can understand it, and I can understand C style languages). I have ...
4
votes
2answers
2k views

nmake Makefile to Place object files in a separate directory

I have all my source files in the Source folder, The makefile is in the Makefile folder and I want all object files to be placed in Objects folder. It is a C project iam working on. All these three ...
3
votes
1answer
232 views

What is the default generator for CMake in Windows?

When running CMake on one PC, CMake generates NMake files by default. On another, it generates a Visual Studio project. I know I can override the default by adding -G "NMake Makefiles" to the end of ...
3
votes
1answer
728 views

How similar/different are gnu make, microsoft nmake and posix standard make?

How similar/different are gnu make, microsoft nmake and posix standard make? Obviously there's things like "which OS?", "which compiler?" and "which linker?", but I'm referring specifically to the ...
3
votes
2answers
3k views

Using nmake with wildcards in the makefile

I am attempting to set up an nmake makefile to export our balsamiq mockup files to png files automatically, but I'm afraid I can't make heads nor tails of how to make a generic rule for doing so, ...
2
votes
1answer
96 views

How to get QtCreator to link incrementally with nmake?

I used to develop in Visual Studio (2008) but almost completely switched to developing in QtCreator now, mainly due to Code Navigation, refactoring and Code Completion. I'm using the win32-msvc2008 ...
2
votes
1answer
3k views

Using CMake with Windows 7, Visual Studio 2010, and the command line

How do I use CMake with Visual Studio 2010 on the command line? With Visual C++ Express Edition (2010) I would type: cmake . nmake nmake install simple. I noticed with Visual Studio 2010, CMake ...
2
votes
1answer
290 views

Visual Studio Makefile Project Synchronization

I've inherited some C99 code that I'm planing on reusing in a C++-centric solution. Unfortunately, even Microsoft's latest compiler has virtually no support for non-trivial C99 features. The code in ...
2
votes
3answers
902 views

Running a program/script from QMake

We have a fairly large code-base. The vast majority of the code is compiled using qmake to produce the makefiles. However, there are some sub-projects that get produced by running batch files or ...
2
votes
2answers
112 views

Using nmake on OSX?

I'm porting an application to MacOS X - but the original developer's build system uses NMAKE, and ideally they'd like to keep it instead of switching to a new one. I've managed to get NMAKE running ...
2
votes
4answers
195 views

building ruby on windows 7

I know this has been asked before but I ran into a specific problem. I'm trying to build ruby 1.9.2 rc2 on windows 7. When I run configure.bat it aborts with the following message. cl -nologo -MD ...
2
votes
2answers
292 views

Concatenation of foldername and filenames in nmake

I have a Makefile for Nmake containing a list of files in a macro: MYSRCFILES1=myfolder\file1.svg myfolder\file2.svg ... myfolder\file99.svg and a second one just like this: ...
2
votes
3answers
416 views

Reuse makefile rule

I'm learning makefiles and I'm trying to figure out how to reuse a rule. Right now I have the following: CPP = cl CPPFLAGS = /Od /D "WIN32" /D "_CONSOLE" /D "_UNICODE" /D "UNICODE" /Gm /EHsc /RTC1 ...
2
votes
3answers
824 views

Nmake getting a list of all .o files from .cpp files

I'm using nmake to compile multiple source files into an elf. However I do not want to specify the .o files in a long list like this: OBJS = file1.o file2.o file3.o What I would prefer is to use a ...
2
votes
6answers
6k views

qt moc.exe not generating *.moc file

I'm trying to build the qtestlib/tutorial1 example, but the testqstring.moc file isn't being generated when I run nmake (I'm running QT 4.5.2 on Windows XP SP3). I copied testqstring.cpp from the ...
2
votes
2answers
1k views

How do I set the executable attributes with qmake for a c++ project?

I use buildbot to compile my Qt/C++/nmake project. I would like to add the version number to the executable and the company details (on the properties of the file). Does anybody know where I can ...
2
votes
2answers
428 views

makedepend equivalent for use with nmake?

Just wondering if there is a 'makedepends' equivalent that ships with visual studio that I can use with nmake. Does anyone know?
2
votes
4answers
4k views

Exporting DLL C++ Class , question about .def file

I want to use implicit linking in my project , and nmake really wants a .def file . The problem is , that this is a class , and I don't know what to write in the exports section . Could anyone point ...
1
vote
1answer
139 views

QWT installation errors

I started using Qt a few weeks ago and I am really enjoying it. I now need to include graphs in my application and, after some research, I found that Qwt was the best way of doing so (rather than ...
1
vote
1answer
72 views

how to use nmake for an c++ project

How do I set up a project using nmake like with gnu make? I got a certain folder structure I want to keep and would love if I could tell cl to put the obj files in a certain build folder. I did not ...
1
vote
1answer
52 views

CMake finds the correct library, but VC++ attempts to link with something else

I have a CMake module to locate FreeGLUT: FIND_PATH(FREEGLUT_INCLUDE_DIR NAMES GL/freeglut.h) FIND_LIBRARY(FREEGLUT_LIBRARY NAMES freeglut freeglut_static) SET(FREEGLUT_LIBRARIES ...
1
vote
2answers
101 views

How to escape white space in nmake

I´m trying to use nmake call MSTest TEST="%VS90COMNTOOLS%..\IDE\MSTest.exe" test: $(TEST) /testcontainer:Test.dll When i run nmake i got: $ nmake test 'C:\Program' is not recognized as an ...
1
vote
1answer
84 views

Is there a conversion utility for converting NMAKE build files to CMAKE build files?

Or are you all laughing so hard that you can't type a response? :) Bottom line is that one library we're using (GDAL) has an NMAKE build file that we'd like to incorporate into our CMAKE build ...
1
vote
1answer
106 views

gdb equivalent for VC++ cl compiler?

I am in the process of porting my application from "MinGW/GCC/make" to "cl compiler/nmake" chain tool. I extensively used "gdb" for debugging in Linux/MinGW environments. What is the command-line tool ...
1
vote
0answers
107 views

compiling SIP - error C2039: is not a member of

I am posting a new question since I have a slightly different problem. Still trying to compile SIP (before trying to compile PyQt) on windows 64 bits. It is giving me the following error : ...
1
vote
1answer
278 views

Using libssl with nmake

LIBS = ws2_32.lib winmm.lib advapi32.lib crypt32.lib user32.lib gdi32.lib libeay32.lib ssleay32.lib OSCOMPAT = /DWIN32 /D_WIN32_WINNT=0x0400 VSCOMPAT = /D_CRT_SECURE_NO_DEPRECATE ...
1
vote
2answers
259 views

including header file in a separate folder

I created a class (say, myclass.h/cpp). I want to use the class from many different places. Therefore, I put those files in a folder (say, C:\cpp_include) and I want to include them from whatever ...
1
vote
1answer
82 views

how to get the output of a command when using Microsoft nmake?

With make on linux, we can do things like: foo=$(shell /bin/bar) which runs the command bar and assigns the output to foo. This can later be used in the makefile by referencing $(foo). But now I ...
1
vote
2answers
441 views

What's the difference between := and = in Makefile?

For variable assignment in Make(or Microsoft nmake), I see := and = operator. What's the difference between them?
1
vote
1answer
340 views

how can i create vcproj (VSC++ project file ) from nmake file?

i have project that supply me only the nmake files , and i like to load the project to Visual studio express 9 , how can convert the nmake to vaild vcproj files ?
1
vote
2answers
591 views

Perl extension installation - unable to run nmake

I am trying to install a module using cpan on XAMPP. I am running Windows 7. Immediately after this prompt is given: CPAN.pm: Going to build J/JE/JESSE/HTTP-Server-Simple-0.43.tar.gz It gives ...
1
vote
2answers
889 views

Testing file existence in NMake

In a makefile for GNU Make I use this idiom to test whether a file exists: static: ifeq ($(wildcard $(FileName)),) # do something when the file doesn't exist else # do something different ...
1
vote
1answer
86 views

Preprocessing on the sources file of device driver

C_DEFINES=$(C_DEFINES) -D_PRODUCT_A //C_DEFINES=$(C_DEFINES) -D_PRODUCT_B #ifdef PRODUCT_A // <- I want to do doing like this in a sources file. MOST_SOURCES= a.c b.c productA.c #elif PRODUCT_B ...
1
vote
0answers
179 views

Automatic dependency tracking with NMAKE

Is possible to detect automatically source dependency in a NMake makefile using VS 2005 compiler (as actually possible with GNU make and GCC compiler)? Look at the '-M' option of GCC. Including the ...
1
vote
0answers
529 views

QT - Build driver plugin QPSQL - problem with nmake

I try build plugin to communicate with postgresql and I use this commands: http://www.ldc.usb.ve/docs/qt/sql-driver.html#qpsql-for-postgresql-version-7-3-and-above (for windows) I have QT4, and gcc ...
1
vote
7answers
384 views

Looking for introduction of nmake & makefile structure

I am looking for some basic information regarding makefile structure. Any pointers will be highly appreciated. Thanks.
1
vote
2answers
437 views

nmake: can a batch file run as part of a make command block, affect the environment of the nmake.exe process?

I think in nmake if I do this: example : set value=77 echo %%value%% The result will display 77 on the console. Is there a way for me to invoke a .cmd or .bat file that will ...
1
vote
3answers
855 views

nmake: is it possible to disable compilation warnings?

Microsoft nmake tool will output any compiler warnings during build process. This is very annoying while building large projects (like Qt). Is it possible to disable warnings display while using ...
1
vote
2answers
175 views

printing long compilation lines with MS NMAKE

I have a legacy MS NMAKE Makefile I need to fix a few bugs in. There are some very long command lines I wish to debug that are being executed using the NMAKE trick of "inline files": dep: cmd ...
1
vote
3answers
267 views

YACC compile error

I am compiling a YACC file using Cygwin shell on a PC. I am getting an 'unknown character \15'. The weird thing is that a co-worker on another machine can compile the exact same file using the same ...
1
vote
8answers
313 views

make---linux and windows formats

I am in a big problem ..i have compiled my c files using linux make file in Linux OS. I want to compile the same files in Windows using the same make file by command prompt. For that i have nmake ...
1
vote
2answers
628 views

Converting nmake to make

Is there a tool in the market that takes Visual Studio "nmake" files, and converts them to Unix-style "make" files? Is there any tool that eases the pain of managing makefiles in large projects?
1
vote
5answers
1k views

Use NMAKE to make all source in a directory?

Using nmake, is it possible to have the makefile build all the .cpp files in the current directory automatically, without having to specify them individually? So, instead of something like: O = ...
1
vote
0answers
239 views

MS nmake equivalent of $(MAKECMDGOALS)

I'm using a (somewhat outdated) Microsoft version of nmake, which is usually packaged with visual studio 6.0. (If there's a relevant answer for newer nmake - do let me know, I might consider ...
1
vote
1answer
595 views

what is NMAKE?

I am wondering what is NMAKE and how to use it? Is there any good tutorial with NMAKE thanks in advance
1
vote
5answers
5k views

How do I create a directory in a makefile

I'm using Visual Studio 2005 nmake, and I have a test makefile like this: sometarget: -mkdir c:\testdir I want to always create the directory, without having to specify 'sometarget'. For ...

1 2 3