Linking cURL in Makefile Linking cURL in Makefile curl curl

Linking cURL in Makefile


This should do the job. You didn't really link to cURL before.

build: $(SOURCES)    $(CXX) -o $(OUT) $(INCLUDE) $(CFLAGS) $(LDFLAGS) $(LDLIBS) $(SOURCES)

Notice the added $(LDLIBS).

Oh, I should add that basically what happens is that you throw overboard the built-in rules of GNU make (see output of make -np) and define your own. I would suggest that you either use the built-in ones if you want to rely on the respective variables to be sufficient to control the build or that you still split it up into compilation and link step for the sake of brevity.

Brief explanation: GNU make comes with a rule that states how to make a .o file from a .cpp (or .c) file. So your make file could perhaps be rewritten to (approx.)

# Testing cURL# MAKEFILE# C++ Compiler (Default: g++)CXX = g++CFLAGS = -Wall -Werror# LibrarysINCLUDE = -I/usr/local/includeLDFLAGS = -L/usr/local/lib LDLIBS = -lcurl# DetailsSOURCES = src/main.cppOUT = test.PHONY: allall: build$(OUT): $(patsubst %.cpp,%.o,$(SOURCES))

This should generate the binary with the name test (contents of OUT) and makes otherwise use of the built-in rules. Make infers from the use of .o files that there must be source files, will look for them and compile them. So implicitly this build will run one invocation for each .cpp file and one for the linking step.


You are missing slashes at the start of the paths below

-I/usr/local/include-L/usr/local/lib