I've been through probably 20 different webpages about makefile but I still can't seem to get it to work for my project. A project with all the files in one folder works, but I can't get it to work with my specific project which has everything in different folders.
Example structure
Here is an example project that has all the necessary features and distinctions to be structurally identical to my project yet obviously smaller:
.
|-- bin
| |-- apple (executable 1) // needs apple's .o files (C++)
| |-- banana (executable 2) // needs banana's .o files + .so file (C/C++)
|-- include
| |-- format
| | |-- format.h
| |-- apple
| | |-- foo.h
| |-- banana
| |-- bar.h
|-- lib
| |-- apple
| | |-- apple_main.o
| | |-- apple_one.o
| |-- banana
| | |-- banana_main.o
| | |-- banana_one.o
| | |-- banana_two.o
| |-- archive_apple
| | |-- libapple_one.a
| |-- archive_banana
| | |-- libbanana_one.a
| | |-- libbanana_two.a
| |-- external
| | |-- foo.so
|-- makefile
|-- src
|-- drivers
| |-- apple_main.cpp // needs format.h
| |-- banana_main.cpp // needs format.h,
|-- apple
| |-- apple_one.cpp // needs format.h, foo.h
|-- banana
|-- banana_one.c // needs format.h, bar.h
|-- banana_two.cpp // needs format.h, bar.h
I've been reading about things online about automatic makefile generation, where you type in certain things into the makefile that goes through the folders and uses substitutions and other things to eliminate the need to list every single rule explicitly, but none of them worked. I must be doing something wrong, but I don't know what it is.
What I need
I want to put the correct things into my makefile that creates what you see above.
As you can see, some parts of the project are necessarily written in C. (I guess I could change everything to be C++ but I don't want to if I don't have to).
My compilers and flags will be:
CC := gcc
CXX := g++
C_FLAGS := -Wall -std=c17
CXX_FLAGS := -Wall -std=c++17
My directories will use -I
to avoid things like
// #include "../../include/format/format.h"
// instead:
#include <format/format.h>
I'll also be using -L
, if that helps, because I want to create those .a
files.
As far as I can see, it's something like:
libsomething.a: something.o
ar rvs ./lib/archive/libsomething.a ./lib/foo/something.o
What do I need in my makefile in order to put this project together and generate my executables, object files, and libraries?
Note: I understand the basics of makefile, like how a rule works and how to put together a makefile manually for a small and simple project, but I'm only just starting to understand the built-in functions and wildcards and other complex things.
And of course, since my project is much larger than this, though structurally identical, I need the answer to be something either generic or easy to modify, like those examples of makefiles I saw online that for some reason don't work on my project. That way, I can adapt this to future projects without unnecessary manual work.
Preferably (unless it is bad practice to do so), I would like for the executables to be built from the libraries, something along the lines of:
executable: something_main.o libfoo.a libbar.a
$(CXX_BUILD) -o ./bin/executable \
./lib/something_main.o \
-L./lib/something \
-lfoo -lbar
May Help.
The Structure of the project:
Makefile