Is it possible to say that if the precondition for this goal does not exist, then ignore this goal?
For example, I have the following set of folders
chrome_src_folders := $(chrome_src_folder)/content/* \ $(chrome_src_folder)/locale/* $(chrome_src_folder)/skin/*
Here i use it
$(jar_path): $(chrome_src_folders) zip -urq $(jar_path) $(chrome_src_folders)
Basically, the skin or locale may not be there, which will give me a good mistake. How to avoid this error and make chrome_src_folders mandatory? or should I somehow filter the chrome_src_folders and leave only those that exist?
Pablo source share