Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a variable in one of my makefiles that contains a list of archive files I need to generate of the following form:

/libpath/mylib1/obj/mylib1.a
/libpath/mylib2/obj/mylib2.a
/libpath/mylib3/obj/mylib3.a

and so on. I've set up a rule to create each of these, basically it scans the parent folder for .cpp files and creates .o prerequisites within the /obj subfolder (so if /libpath/mylib1 contains foo.cpp and bar.cpp then the prerequisites are /libpath/mylib1/obj/foo.o and /libpath/mylib1/obj/bar.o etc). The only way I could get this to work was with .SECONDEXPANSION: I create a list of .cpp files, strip the folder and extension, suffix it with the .o extension and then prefix it with the target folder:

%.a: $$(addprefix $$(dir $$@),$$(addsuffix .o,$$(basename $$(notdir $$(wildcard $$(dir $$@)../*.cpp)))))

This works fine but I can't help but feel I'm going about this in an overly complicated way. Is there a better/cleaner way to do stuff like this?

share|improve this question

1 Answer

up vote 1 down vote accepted

I would only suggest to extract the logic into a macro, and use the latter as prerequisite. Also I would prefer patsubst function instead of notdir + basename + addsuffix, and $(@D) automatic variable instead of $(dir $@).

lib_objects = $(patsubst %.cpp,$(@D)/%.o,$(notdir $(wildcard $(@D)/../*.cpp)))

%.a: $$(lib_objects)

IMO, looks a bit better, isn't it?

share|improve this answer
Thanks Eldar. I used addsiffix because there's actually four different extensions I'm trying to filter out, I'll need to have a closer look at patsubst to see if it can handle that. Cheers! – Mark Feldman Feb 2 '12 at 1:20
@Mark, you're welcome! – Eldar Abusalimov Feb 2 '12 at 8:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.