I am trying to figure our an error I keep getting with make. I have several source files located in assign1 directory along with a includes directory (contains bb.h). What I am trying to do is include the bb.h header file when I am creating gq.o file. All the other object files compile fine except gq.o due to this error:
z1755294@hopper:~/assign1/assign1$ make
g++ -c fr.cc
g++ -c vw.cc
g++ -c ac.cc
g++ -c pg.cc
g++ -c gq.cc -I./includes
g++ -o output fr.o gq.o vw.o ac.o pg.o
gq.o: In function `main':
gq.cc:(.text+0x0): multiple definition of `main'
fr.o:fr.cc:(.text+0x0): first defined here
vw.o: In function `main':
vw.cc:(.text+0x0): multiple definition of `main'
fr.o:fr.cc:(.text+0x0): first defined here
collect2: error: ld returned 1 exit status
Makefile:12: recipe for target 'output' failed
make: *** [output] Error 1
this is my Makefile:
output: fr.o vw.o ac.o pg.o gq.o
g++ -o fr.o gq.o vw.o ac.o pg.o output
fr.o: fr.cc pg.h
g++ -c fr.cc
vw.o: vw.cc ac.h
g++ -c vw.cc
ac.o: ac.cc ac.h pg.h
g++ -c ac.cc
pg.o: pg.cc pg.h
g++ -c pg.cc
gq.o: gq.cc ac.h includes/bb.h
g++ -c gq.cc -I./includes/bb.h
clean:
-rm *.o
fr.cc, gq.cc and vw.cc all have main functions inside each of them.
ac.cc and fr.cc both have fl(); function they have in common.
gq.cc and vw.cc both have x2(); function they have in common.
I am not allowed to edit any of the files below. The goal is to create a makefile so if the bb.h file were to be changed by someone then the makefile will still work.
Here is the file structure for each file:
ac.cc
#include "ac.h"
#include "pg.h"
#include <iostream>
using std::cout;
using std::endl;
void y7(void)
{
cout << "y7()" << endl;
}
void x2(void)
{
cout << "x2()" << endl;
f1();
}
ac.h
void y7(void);
void x2(void);
fr.cc
#include <iostream>
using std::cout;
using std::endl;
#include "pg.h"
int main()
{
cout << "program fr" << endl;
f1();
return 0;
}
gq.cc
#include <iostream>
using std::cout;
using std::endl;
#include "ac.h"
#include "bb.h"
int main()
{
cout << "program gq" << endl;
x2();
cout << "CONST111: " << CONST111 << endl;
cout << "CONST222: " << CONST222 << endl;
return 0;
}
pg.cc
#include "pg.h"
#include <iostream>
using std::cout;
using std::endl;
void f1(void)
{
cout << "f1()" << endl;
}
void g3(void)
{
cout << "g3()" << endl;
}
pg.h
void f1(void);
void g3(void);
vw.cc
#include <iostream>
using std::cout;
using std::endl;
#include "ac.h"
int main()
{
cout << "program vw" << endl;
x2();
return 0;
}
includes/bb.h
define CONST111 42
#define CONST222 84
-I./includes/bb.h, it should point only to the directory, not the file:-I./includes. Of coursebb.hmust exist in that directory.g++ -o fr.o gq.o vw.o ac.o pg.o outputto:g++ -o output fr.o gq.o vw.o ac.o pg.o