A makefile is usually an input file for the build control language/tool make.
1
vote
1answer
78 views
Write and read non-serializable object to file android example
I couldn't find a good example, so after some fighting with writing non-serializable object to file in Android, I decided to show you my solution. Could you tell me if it is OK or how could it be ...
2
votes
1answer
84 views
Monitor filesystem for continuous integration and build
I've written a simple Python module that depends on watchdog to monitor for modified files, thens runs various integration and build processes.
I'm fairly new to Python, so I'd appreciate all ...
3
votes
3answers
72 views
Makefile — Platform Dependency
My application has two parts -- a client and a server. Within this, there are different versions for different platforms. The user specifies this in the args, i.e. "make PLATFORM=x11".
However, I ...
0
votes
3answers
59 views
What is the best way to save this? (saving the data generated by an application) [closed]
I have this code, and i want to save the generated data, but i don't know how, A database? a file? do i need to chance everyting in the code and start over again?
I'm from brazil, so the variables ...
3
votes
2answers
112 views
A clean and efficient makefile for a simple c program
I have an instructor who is very stringent on makefiles only containing rules and dependencies that need to be included.
The structure for the program is very basic. The requirement is to produce ...
5
votes
2answers
364 views
Improving Makefile and general c++ project structure
I am a single developer on a numerics project. As it is growing, I would like to improve
the Makefile
the general organisation of the project
structuring of the files
workflow
As it stands now I ...
2
votes
2answers
60 views
Makefile tracking YYYY-MM directories
I have a directory full of YYYY-MM directories with statistics. I want to use a Makefile to only build summaries YYYY-MM.txt of the statistics if the contents of directory is newer than the summary.
...
2
votes
1answer
125 views
Makefile Magic on Simple Linux C Project
I am in the early stages of learning to write makefiles for larger projects where all the source will be spread across multiple directories. Instead of posting all the source, I have provided a link ...
2
votes
1answer
96 views
Optimizing a Makefile
It's been pointed out (see the first comment) that my makefile rebuilds all source files regardless of changes made.
# Variables #
TARGETS := libAurora.a libAurora.so
# The names of targets that ...
9
votes
3answers
1k views
makefile dependency generation
I need automatic dependency generation to be done in my makefile. So, I have tried to write one, after googling for similar ones. I have found some ways to do that, but the problem is that they are ...