LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 04-28-2010, 10:20 AM   #1
ryande
LQ Newbie
 
Registered: Apr 2010
Posts: 1

Rep: Reputation: 0
makefile question


Hello everyone,

I need some makefile help.

I have ~200 c files in my makefile[$(SRCS)], and it compiles all of the files
using a single gcc command. So each time I make a change in one c
file, it ends up re-compiling all the files, then linking to make the
binary. How can I break out the compilation into individual gcc
commands for each c file, so that make checks the timestamp and accordingly compiles only the modified files.

My current Makefile looks like this.

SRCS=a/a.c a/b.c b/c.c b/d.c
OBJS=a.o b.o c.o d.o

all: clean compile link

compile:$(SRC)
gcc -g -c $(SRCS)

link:$(OBJS)
gcc -o final $(OBJS)

clean:
rm *.o final


Thanks in advance.
ryan
 
Old 04-28-2010, 12:07 PM   #2
CoderMan
Member
 
Registered: Jan 2009
Location: Gemini Capsule 25164
Distribution: Gentoo
Posts: 375
Blog Entries: 24

Rep: Reputation: 43
It has been some time since I actually wrote my own Makefile. But the way you are currently doing it is not the usual way of going about it. I think you want something like this:

Code:
all: hello

hello: main.o factorial.o hello.o
	g++ main.o factorial.o hello.o -o hello

main.o: main.cpp
	g++ -c main.cpp

factorial.o: factorial.cpp
	g++ -c factorial.cpp

hello.o: hello.cpp
	g++ -c hello.cpp

clean:
	rm -rf *o hello
That is pasted from a tutorial at http://mrbook.org/tutorials/make/.

There another tutorial I found here:

http://www.cs.duke.edu/~ola/courses/...Makefiles.html

It gives a lot of tips on things like Makefile macros, and mentions a utility called makedepend which will generate the makefile rules for you by looking at the source code.
 
Old 04-28-2010, 01:08 PM   #3
johnsfine
LQ Guru
 
Registered: Dec 2007
Distribution: Centos
Posts: 5,286

Rep: Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197
I don't know make very well. I mainly use a non standard version of boost_build in which the issue in the original post could be handled easily.

Quote:
Originally Posted by CoderMan View Post
I think you want something like this:
The problem with that suggestion is it would require individual rules for each of ~200 modules for which X.o is built from a/X.c

You want some generic rule to say every X.o is built the same way from the corresponding a/X.c

I don't recall how (or even if) you can do that in a makefile (given the complicating factor of all the c files in a subdirectory.
 
Old 04-29-2010, 12:20 AM   #4
CoderMan
Member
 
Registered: Jan 2009
Location: Gemini Capsule 25164
Distribution: Gentoo
Posts: 375
Blog Entries: 24

Rep: Reputation: 43
Quote:
Originally Posted by johnsfine View Post
I don't know make very well. I mainly use a non standard version of boost_build in which the issue in the original post could be handled easily.



The problem with that suggestion is it would require individual rules for each of ~200 modules for which X.o is built from a/X.c

You want some generic rule to say every X.o is built the same way from the corresponding a/X.c

I don't recall how (or even if) you can do that in a makefile (given the complicating factor of all the c files in a subdirectory.
Heh... Yah, I use autotools, so I rarely write my own makefiles. But I do remember that make had some system built in for implicitly compiling a lot of the targets.

If you really want to write your own makefiles, read through this section in the official manual on implicit rules. I believe this is what I was thinking of:

http://www.gnu.org/software/make/man...Implicit-Rules
 
Old 04-29-2010, 12:30 AM   #5
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Since this thread is related to makefiles, I wanted to know when autotools are readily available which automatically generate makefiles, then why still it is considered important to know how to write the makefiles ?

Is there any special reason that we should know how to write the makefiles ??
 
Old 04-30-2010, 12:11 AM   #6
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Got the answer here.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Makefile question silentray Linux - Newbie 1 12-18-2009 04:51 AM
Makefile question orgcandman Programming 3 02-27-2008 12:04 PM
Makefile.in question lucky6969b Programming 4 12-08-2005 03:32 AM
Question about makefile taureanyang Programming 1 03-25-2005 11:57 PM
makefile question blackzone Programming 2 12-20-2004 07:03 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 06:38 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration