How do includee all libraries from a directory in a Makefile?
Say I want to include all libraries in the directory /libdir, how would I do this?
/libdir
The result should be something like:
INCLUDES = -I/libdir/lib1 -I/libdir/lib2 -I/libdir/lib3 ...
LIBDIRS = $(wildcard /libdir/*) INCLUDES = $(addprefix -I, $(LIBDIRS))
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
9 months ago
viewed
47 times
active