I'm trying to create a library, called A.a, that provides a class A, which depends on the classes B and C, all in their respective files (.cpp and .hpp). I usually compiled all my code manually, but as the number of files increased, I wanted to use a makefile. Basically, what I would do was:
g++ -c A.cpp
g++ -c B.cpp
g++ -c C.cpp
ar rvs A.a *.o
How can I construct a makefile that does this? Can makefiles even call ar?
This is what I tried:
CC=g++
CFLAGS=-c -Wall
objects=C.o B.o
all : A.o $(objects) #Creates the library called A.a.
:ar rvs A.a A.o $(objects)
A.o : $(objects) A.hpp A.cpp
:$(CC) $(CFLAGS) A.cpp
B.o : B.hpp B.cpp
:$(CC) $(CFLAGS) B.cpp
C.o : C.hpp C.cpp
:$(CC) $(CFLAGS) C.cpp
But it seems that my ar rvs A.a A.o $(objects) instruction isn't even executing. This makefile produces all the correct .o files, but doesn't archive them.