10
votes
12answers
677 views
Recommended build system for latex?
I'm trying to figure out the best build system for latex.
Currently, I use latex-makefile, editing in vim, and viewing changes in Okular or gv. The major problem is that it sometimes gets hides …
6
votes
3answers
486 views
Forcing Eclipse to generate standard Unix makefiles
I have an Eclipse project I've been working on for some time now, and I'd like to open source it. But to do that I'd like to have a clean Makefile like the majority of other open source programs. I …
6
votes
4answers
300 views
VIM: is there an easy way to manage Visual Studio solutions / makefile projects from Vim?
Hello,
I tried using Visual Studio instead of VIM(+plugins), but to be honest - the only advantage of VS over VIM is it's ability to automatically manage my project.
I know of existence of ViEmu for …
6
votes
2answers
278 views
Make/makefile progress indication!
Look at this makefile, it has some sort of primitive progress indication (could have been a progress bar).
Please give me suggestions/comments on it!
# BUILD is initially undefined
ifndef BUILD
…
6
votes
5answers
341 views
Any interesting uses of Makefiles to share?
"make" is not only useful for building your programming project, but it seems to be under-used in other areas.
For example, many shell scripts can be rewritten as Makefiles to allow independent parts …
6
votes
3answers
2k views
Building Xcode Projects From the Command Line
I've been playing around with Qt for a few hours now. I found that qmake produces Xcode project files on Mac OS X instead of good ol' makefiles. I don't want to launch Xcode every time I want to build …
6
votes
1answer
2k views
GCC with Visual Studio?
How hard would it be to use GCC instead of VC++ from within Visual Studio 2008? Obviously, some of the keywords won't match, and some may not get syntax highlighting (unless you made a new language …
6
votes
2answers
1k views
makefiles - compile all c files at once
I want to experiment with GCC whole program optimizations. To do so I have to pass all C-files at once to the compiler frontend. However, I use makefiles to automate my build process, and I'm not an …
5
votes
2answers
201 views
How to compile different c files with different CFLAGS using Makefile?
Hi, all. Let's say I have a program that contains a long list of C source files, A.c, B.c, ...., Z.c, now I want to compile A.c, B.c with certain CFLAGS, and compile the rest part of source files with …
5
votes
13answers
876 views
C++ development on linux - where do I start?
I decided to leave my windows install behind and am now running Debian as my default OS. I have always coded in Windows and specifically with Visual Studio. I am currently trying to get used to …
5
votes
3answers
325 views
In Unix, can I run ‘make’ in a directory without cd’ing to that directory first?
In Unix, can I run 'make' in a directory without cd'ing to that directory first?
5
votes
1answer
977 views
Call cmake from make to create Makefiles?
I am using cmake to build my project. For UNIX, I would like to type make from my project's root directory, and have cmake invoked to create the proper Makefiles (if they don't exist yet) and then …
4
votes
2answers
120 views
multi package makefile example for go
I'm trying to setup a multi package go project something like
./main.go
./subpackage1/sub1_1.go
./subpackage1/sub1_2.go
./subpackage2/sub2_1.go
./subpackage2/sub2_2.go
where main.go imports both …
4
votes
2answers
84 views
What is the reasoning behind the Makefile whitespace syntax?
G'day,
I'm revisiting Python after Michael Sparks's excellent walkthrough of Peter Norvig's Python spell checker at the SO DevDay in London.
One of the points he highlighted was how clean Python is …
4
votes
4answers
197 views
How can I ignore command line variable assignment in a recursive build?
I'm trying to glue two build systems together. Both are recursive (rules in the makefile use make to call other makefiles to build components of the project).
I'll call them 'A' and 'B' where 'A' …
