-1
votes
0answers
39 views

How to compile using Makefile on Windows?

So I have a bunch of source code files, just needed little tweaks in one of the CPP files, made the adjustments that were needed. But now I am stuck with how to get the entire executables built up ...
-2
votes
2answers
74 views

Fortran Make file for windows

Please could you help me how to convert FORTRAN make file for Linux to a make file for FORTRAN under windows? my Linux make file here https://www.dropbox.com/s/ui6pbtwmumc5zpz/makefile.txt Also I ...
0
votes
0answers
76 views

Run cudamat Makefile.win on Windows 7

I used the cmd for Visual Studio 2008 and 2010 to run this make file: cudamat: cudamat.cu cudamat.cuh cudamat_kernels.cu cudamat_kernels.cuh learn.cu learn_kernels.cu learn_kernels.cuh nvcc -O ...
0
votes
2answers
135 views

How to run makefile for C++ files in Windows (Vista) without the use of cygwin?

I am using Windows Vista, and have downloaded a folder of files in C++ with a Makefile. I would like to run the makefile to compile the source files with header files under Windows. In the end I would ...
0
votes
2answers
51 views

How to check if dll generated is statically or dynamically linked?

Following is my linking command: Running Mkbootstrap for XML::SAX::ExpatXS () C:\Perl\bin\perl.exe -MExtUtils::Command -e chmod -- 644 ExpatXS.bs link ...
0
votes
3answers
60 views

Write a makefile with one rule for many targets?

It may seem as a very simple question, but I could not find any way to fix it. My intention is to convert every ".ui" file into a ".py" file by invoking the pyuic4 command (from PyQt). I tried to ...
-1
votes
1answer
40 views

Makefile claiming a file is created when it isn't

I've tried searching for someone with a similar issue for the past half hour but, I can't find anything for why this is showing that the file is up to date when it doesn't exist at all. Here's the ...
0
votes
1answer
123 views

Can't build a Makefile with CMAKE, compiler is not specified

i'm trying to use OpenCV for Java Desktop(Available since 02/15/2013) to do a simple face recognition project(for study purposes), and i'm having a problem to build the OpenCV in Windows. I'm ...
-1
votes
2answers
90 views

what command on cmd works just the same as the “makefiles” command on Linux?

I'm new on C programming and I had been wondering what command on cmd works just the same as makefiles on Linux. You see, the OS of the computers we use in school is Linux and Mac and my laptop is ...
0
votes
1answer
87 views

addprefix command not recognized in makefile using nmake.exe windows

all: prd.exe CC=cl CFLAGS=-O2 -I../src -I. /W4 LDFLAGS = /Zi LIBSRC = $(addprefix ../lib/, \ open.c malloc.c \ ) \ $(addprefix ../src/, \ main.c \ ) \ helper.c ...
0
votes
2answers
137 views

Duplicating stderr compilation output into separare file

I have a project, which builds by using make, and I want to add possibility to analyze overall state of warning messages. My idea is change make rules in order to duplicate stderr compilation output ...
0
votes
0answers
107 views

Compile fine but “hello world” does not work

I'm using g++ to compile a small project, and it just compile fine. When i run the exe from the console it just freeze and print nothing (i have to close it from task manager). I changed the main to ...
0
votes
1answer
88 views

Simple NMAKE file fails (1 echo command)

I can't, for the life of me, figure out what I've done to my build environment. Even now, the simplest of make files fails me: win32.mak: ALL: echo test command: nmake -f win32.mak output: ...
2
votes
2answers
65 views

Generalizing include statements in c++ files when building with make

Hello (I am using Windows, mingw g++ compiler and mingw32-make) To generalize my question I would like to learn how to write a c++ source file as follows: Assuming that foo.cpp depends on foo.h ...
0
votes
0answers
17 views

Building c# from “sources” file

I'm trying to compile a c# program using a "sources" file (sort of like a windows version of makefile to my understanding) , but run into some trouble with it and it seems there is very little ...
1
vote
1answer
163 views

MSYS error “rem: command not found”

I am getting this error "rem:command not found" in my batch file. Other dos commands (e.g. echo) are also not found. My makefile is calling this batch file. This works previously when I am using ...
1
vote
1answer
95 views

How to build a project using MAKE, on Windows? (It builds output from source JS files)

So, I am trying to build this on Windows: https://github.com/jarnokurlin/fullcalendar/ I have Visual Studio 2012, and I tried opening the developer tools command prompt, going to the folder where I ...
1
vote
0answers
119 views

Calling matlab from c++ using cygwin

I'm working in windows and want to send data from C++ to Matlab. I've gotten the impression this is done most easy creating a makefile. Therefore I've installed cygwin to use the make command. My ...
3
votes
1answer
45 views

makefile-working with envirnoment variables

I have written a makefile. This makefile is to be checked into svn. I used environment variables for my project directory path so that different computers can run the makefile without having to make ...
2
votes
1answer
732 views

cmake: problems specifying the compiler

I have a problem with this CMakeLists.txt file: cmake_minimum_required(VERSION 2.6) SET(CMAKE_C_COMPILER C:\\MinGW\\bin\\gcc) SET(CMAKE_CXX_COMPILER C:\\MinGW\\bin\\g++) project(cmake_test) ...
0
votes
1answer
91 views

Makefile/Shell: Append text to a name and use that name as a variable

What I want is: Given an array of names, e.g., dependency1, dependency2, .., dependencyN: Append "_DEP_DIR" to each name, to form, e.g., dependency1_DEP_DIR, .., dependencyN_DEP_DIR. (XXX_DEP_DIR ...
1
vote
2answers
2k views

How to use GNU Make on Windows?

I installed MinGW and MSYS, added C:\MinGW\bin to PATH but I still cant run Makefile on Windows' cmd. I mean, I would like to run cmd.exe and there type for example, make all but my cmd says that ...
0
votes
0answers
60 views

makefile tilde expansion, difference between windowsXP and windows7

I am recompiling a project. Previously I was using WindowsXP, but I switched to Windows7. Problematic part of the makefile is: %else INSTALL_DIR := C:\PROGRA~1\micros~1.0\VC %endif %if ...
5
votes
4answers
376 views

How to get cpp files from different directories compiled into one folder?

I have a number of C++ files distributed in several folders. a_library/ file1.cpp file2.cpp category1/ file3.cpp file4.cpp They are guaruanteed to be uniquely named. I ...
0
votes
1answer
64 views

make wildcard targets

Not much to say. %.o: %.c @echo $< C:\Users\niklas\Desktop>make foo.o make: *** No rule to create »foo.o«. End. I expect it to print foo.c. Why doesn't it work? Note: The last line ...
0
votes
0answers
36 views

make always passes the same input-file

I'm trying to compile a large project with GNU-Win make under Windows 7. CCFLAGS = -D__forceinline -D__GCC__ -D__PC -Wno-multichar -DCOMPILE_CODEBLOCKS -Wattributes -Winvalid-offsetof SOURCES = ...
0
votes
2answers
1k views

qt gui project error at makefile

I've just installed qt sdk and qt eclipse plugin on Windows 7,and afterwards when i created a new gui project, i got this 2 errors at building: ***make missing separator.Stop. and ...
3
votes
1answer
275 views

Command line arguments to make for working in Linux and Windows

I have gone through the link Passing additional variables from command line to make. I have a project which compiles both on Linux and Windows using makefiles. In Windows it uses gcc while in Linux ...
1
vote
1answer
446 views

Add dependency on Shell32.lib to WDK makefile

I've successfully powered my way through the WDK XPSDrv sample project and modified it to do what I need. However, I absolutely cannot figure out how to get the build scripts to ...
-1
votes
3answers
4k views

guide to mingw make files mingw32-make

I'm a C++ programmer and have experience with GCC on Linux. I want to develop an application in Windows , so i need a full guide to mingw make files, variables and mingw32-make. Is there anybody who ...
0
votes
1answer
258 views

How do I configure an OpenGL makefile for Windows?(from Linux)

Here is the makefile: CC = g++ LD = g++ CFLAGS = -I/usr/X11R6/include -I. -c LDFLAGS = -L/usr/X11R6/lib -lglut -lGLU -lGL -lXi -lXmu -lXt -lXext -lX11 -lSM -lICE -lm INCS = OBJS = x.o ...
1
vote
0answers
1k views

How to install vim on Cygwin

First, I saw that you can install vim normally in the setup.exe, but I realized that I wanted to install vim with Ruby support. I downloaded the vim 7.3, untared it and ran ./config ...
3
votes
2answers
111 views

c make files, how to make one that will compile four source files?

This is my homework. I'm looking for help on how to a make a "makefile" that will compile three source files. Of which will be named "timestable.c tablein.c tableout.c timestable.h". Those are the ...
0
votes
2answers
310 views

Can Eclipse debug my Windows exe built with makefile?

I have built a C++ exe using my own makefiles. I have Eclipse CDT. I don't want to use Eclipse to "manage" my project. Can it be used simply as a debugger? If so I need explicit instructions.
1
vote
4answers
254 views

Graphical, free debugger for makefie built C++ programs (Windows XP)

The software I develop uses command line makefiles. My environment uses free tools as much as possible. If you were to ask me which version of make I am using I would struggle to specify that, because ...
0
votes
2answers
223 views

Create exe file from .c and .h files

I want to use a exe that will create a triangle strip. I have found the link with code. It has a set of .c and .h files which has to be compiled using the given make file. But when i try to run the ...
0
votes
1answer
147 views

windows equivalent of command substitution in makefiles

I want to display current build(hg revision) number in the about box of my program. I thought about using a "define" (std::string rev = REVISION;) in the code and pass the value to g++ via makefile: ...
4
votes
2answers
1k views

Create a DLL using Makefile to run on Windows XP (32 bit) and Windows 7 (64 bit)

I need to modify the below makefile to create a dll (SampleNew.dll) that will run on a 32-bit windows and 64-bit Windows environment. Maybe creating two dlls (one for 64 and one for 32) is the best ...
0
votes
3answers
292 views

How can I compile and run project from command line(Windows 7)?

I have a project which has a makefile: # a simple makefile # Uncomment, if compression support is desired #DCOMP=-DWITH_COMPRESSION #ZLIB=-lz #Compiler CC=g++ # compiler switches #CPPFLAGS=-g -I. ...
2
votes
2answers
379 views

Netbeans Project from Mac to Windows

I created a Netbeans CPP Project in my Mac and uploaded it into git. The project has collaborators who use Windows. When I pushed my project into github , I pushed the makefile information too (the ...
0
votes
1answer
138 views

Building .c file to create driver won't work following basic example

I'm following this basic example how to create a system driver: http://sriramk.com/blog/2007/09/world-windows-driver-from-scratch.html When I do the build I get the following (above the BUILD: ...
2
votes
2answers
2k views

Eclipse, cmake, Windows, MingW - What Makefile generator?

What's the difference on Windows with cmake and eclipse and MingW if I choose "Eclipse MingW Makefile" or "Eclipse Unix Makefile"? With the MingW one I always get an error with "sh.exe" (that ...
0
votes
2answers
2k views

Makefile clean on windows

I'm learning about using makefiles now and I made the following makefile (I'm on windows using visual studio command line compiler) CC = cl CFLAG = /EHsc test_database.exe: composer.obj database.obj ...
1
vote
1answer
219 views

How to prepare ./configure make make install for my C file when it has other dependencies?

Writing/reading code seems less stress then preparing a deploy scripts such as ./configure then make and make install for my C application's. How can i make a ./configure file and make files for this ...
0
votes
1answer
784 views

How can I write a mingw-make makefile on Windows?

I am new to using GNU make. I have a makefile as below: CFLAGS = -c -I $(WXWIN)\include\ hello: main.o main.o:main.cpp gcc -c main.cpp clean: rm main.o When I run make command in ...
0
votes
1answer
284 views

How to install JudyArrays (C library) on Windows

I know it can sound as a pretty dumb question, but I do not have a great experience with installing downloaded libraries... Anyhow I downloaded the source code of JudyArrays (which is a C library for ...
0
votes
2answers
54 views

Automatically run Makefiles when doubleclicked

Is there a way to have Makefiles run automatically (then pause at the end) when doubleclicked in Windows Explorer?
0
votes
2answers
75 views

Adding build flag on everything except windows

I have a project which uses the windows API on windows, and pthreads on every other platform. How do I have my makefile add -pthread to my CFLAGS if I'm NOT targetting for windows? For compiling, I ...
0
votes
1answer
440 views

help trying to compile simple c++ program in make

I am having trouble with make. I installed all of the features that come with cygwin. When I type in make command it says: make:***No targets specified and no makefile found. Stop. This is ...
4
votes
1answer
326 views

Compile wcecompat to a dll

I am using wcecompat to bridge the gap between WinCE SDK and OpenSSL. Due to LGPL license issue, I want to compile it to a dynamically linked library. Here is part of the makefile (full file is at ...

1 2