I'm trying to run a script against some 34k+ files. I see make as the easiest way to multi-task.
Here's what I have (short list) LIST := \ /home/pvcs/pvcs_arch/bfpdlxml/bb_profile.__v \ /home/pvcs/pvcs_arch/bfpdlxml/bf/src/bfen_IO.c_v \ /home/pvcs/pvcs_arch/bfpdlxml/bf/src/bfen_IO_physical.c_v \ /home/pvcs/pvcs_arch/bfpdlxml/bf/src/bfen_IOibm.c_v all : $(LIST) define xxx $(1) : UnmanglePvcs.pm $(1) endef $(foreach file,$(LIST),$(eval $(call xxx,$(subst #,\#,$(file))))) Some files have a # in the name. That is there reason for the substr _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
