On 2011-01-11 14:51Z, givemecode wrote: > >> HEADER += $(patsubst %.h,%.hh,$(widlcard $(INCLUDE_DIR)/%.h)) > ^^ ^ > I tried putting that line in my makefile and it doesn't seem to create a > list that I need (probably operator error).
The third and fourth letters of 'wildcard' were accidentally swapped, and its argument should have '*' instead of '%': HEADER += $(patsubst %.h,%.hh,$(wildcard $(INCLUDE_DIR)/*.h)) _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
