473,406 Members | 2,220 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

makefile help

Hello,

I am now trying to use makefile to compile C++ programs. My makefile
looks like:

f1.o : f1.cpp h1.h h2.h
g++ -c f1.cpp

f2.o : f2.cpp h2.h h3.h
g++ -c f2.cpp

final.o : final.cpp h4.h h5.h
g++ -c final.cpp

final : f1.o f2.o final.o
g++ f1.o f2.o final.o -o final

In other words, to make a ".o" file, I put its corresponding ".cpp"
and all the "included" ".h" files as dependent files. For the
executable file ("final" above), I put all the ".o" files as dependent
files, without any other ".h" files. Is this the correct approach?
Or, is there a simpler way? Additionally, is there anything important
missing from my makefile?

Thanks a lot!

Apr 25 '07 #1
4 3934
Hi,
I am now trying to use makefile to compile C++ programs. My makefile
looks like:

f1.o : f1.cpp h1.h h2.h
g++ -c f1.cpp

f2.o : f2.cpp h2.h h3.h
g++ -c f2.cpp

final.o : final.cpp h4.h h5.h
g++ -c final.cpp

final : f1.o f2.o final.o
g++ f1.o f2.o final.o -o final

In other words, to make a ".o" file, I put its corresponding ".cpp"
and all the "included" ".h" files as dependent files. For the
executable file ("final" above), I put all the ".o" files as dependent
files, without any other ".h" files. Is this the correct approach?
Or, is there a simpler way? Additionally, is there anything important
missing from my makefile?
I'm quite sure that this question does not belong to a C++ newsgroup, anyway:

For writing a simpler Makefile you should give the GNU Make manual a read.
You may especially want to search for the chapter called "Generating
Prerequisites Automatically".

Alternatively, I suggest you try other build systems such as SCons
(www.scons.org) which do this automatically for you. The SConstruct for
your above example would be something like:

Program('final', Split("f1.cpp f2.cpp final.cpp")

Cheers,
Bjoern
Apr 25 '07 #2
Jess wrote:
Hello,

I am now trying to use makefile to compile C++ programs. My makefile
looks like:

f1.o : f1.cpp h1.h h2.h
g++ -c f1.cpp

f2.o : f2.cpp h2.h h3.h
g++ -c f2.cpp

final.o : final.cpp h4.h h5.h
g++ -c final.cpp

final : f1.o f2.o final.o
g++ f1.o f2.o final.o -o final

In other words, to make a ".o" file, I put its corresponding ".cpp"
and all the "included" ".h" files as dependent files. For the
executable file ("final" above), I put all the ".o" files as dependent
files, without any other ".h" files. Is this the correct approach?
Or, is there a simpler way? Additionally, is there anything important
missing from my makefile?

Thanks a lot!
This is off topic here. Try comp.unix.programmer. I have set followups
to that NG.

Just as a suggestion, try MakeXS (the website is down, I need to get it
back up but you can get a version of you download austria C++ from
sourceforge.

For MakeXS, simply place your cpp files in a folder, under the folder
containging the MakeXS folder. Add a Makefile.xsi (exact copy of all
other Makefile.xsi files) and a Makefile that includes your Makefile.xsi
and run "make".

It automatically creates your dependantcies, i.e. "f1.o : f1.cpp
h1.h..." and has a large number of other things you can do.
Documentation is there.

Yes, I need to put MakeXS.com back up....

While I am at it, it will also create your include directory list
automatically so it allows you to separate your app with NO modification
of your Makefiles. It also builds
The latest latest version is available in the austria C++ alpha at:

http://netcabletv.org/public_releases/ (100 meg download - has lots of
precompiled binaries). MakeXS by itself is quite small.
Basically, what I am trying to say is that basic Makefiles become a
maintenance nightmare, even for small projects and somthing like MakeXS
can eliminate alot of hard work.

Apr 25 '07 #3
On 2007-04-25, Jess <wd***@hotmail.comwrote:
Hello,

I am now trying to use makefile to compile C++ programs. My makefile
looks like:

f1.o : f1.cpp h1.h h2.h
g++ -c f1.cpp
[snip]

Here's a simple one:

----------------------------------

EXECUTABLE=filename
CXX=g++
CXXFLAGS=-W -Wall -ansi -pedantic -O2 -s -c
LDFLAGS=-O2 -s

OBJECTS=file1.o file2.o fileN.o

..PHONY: all

all: $(EXECUTABLE)

$(EXECUTABLE): $(OBJECTS)
@echo "Linking $(EXECUTABLE) ..."
@$(CXX) $(LDFLAGS) $(OBJECTS) -o $@
@echo "Done."

%.o: %.cpp %.h
@echo "Compiling $@ ..."
@$(CXX) $(CXXFLAGS) $< -o $@

----------------------------------

HTH,
Peter
Apr 25 '07 #4
Thanks to all your information!

Apr 26 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Jamie Saker | last post by:
I think I'm overlooking something assumed in socket's makefile method. Googling several hours and digging thru the python reference didn't help - I think I'm overlooking an assumption between...
3
by: Faith | last post by:
any good tips on reading makefiles that were written using C++ ASAP please
3
by: tmponko | last post by:
OK...I'm new to this and I'm sure I'm missing something obvious, so please be kind. I've tried several different approaches to this problem (including various if, ifeq, and case constructs), and...
4
by: newbiecpp | last post by:
I am very sorry to post this one because I know it is out of topic but I cannot find the proper news group. I understand that most senior C++ programmers know makefile very well. My question is...
2
by: Juhan Voolaid | last post by:
Hello I need help with my makefile, so that when I compile my project the source code files would be separated from the object (*.o) files. So if I have: main.cpp and classes.cpp - the...
6
by: dolphin | last post by:
Hi! I am learing makefile recently.Now I have a problem. I write a very simple program just like "hello world" I write two makefile for it.One is included in another. the first is makefile...
1
by: rpjanaka | last post by:
I am using an open source library called IGI_UDP for measure the available bandwidth of a link (http://www.cs.cmu.edu/%7Ehnn/igi/ ). with that library they have provided a "Makefile" which is not an...
5
by: M.Liang Liu | last post by:
I have a project with the following dirs: --------------------------------------------------------------------------------------- +src |-proj0 |-program1 |-program2 |-proj1 |-program1...
2
by: chutsu | last post by:
I'm basically a summer student working on a program called Rivet. (http://projects.hepforge.org/rivet/) And I'm trying to port it to BOINC so that the hosts can download the BOINC client and do...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.