1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
$(outdir)/%: %.pl $(config_make) $(depth)/VERSION
$(call ly_progress,Making,$@,(sed))
sed $(sed-atfiles) $(sed-atvariables) < $< > $@
chmod 755 $@
$(outdir)/%: %.bash $(config_make) $(depth)/VERSION
$(call ly_progress,Making,$@,(sed))
sed $(sed-atfiles) $(sed-atvariables) < $< > $@
chmod 755 $@
$(outdir)/%: %.scm $(config_make) $(depth)/VERSION
$(call ly_progress,Making,$@,(sed))
sed $(sed-atfiles) $(sed-atvariables) < $< > $@
chmod 755 $@
$(outdir)/%: %.sh $(config_make) $(depth)/VERSION
$(call ly_progress,Making,$@,(sed))
sed $(sed-atfiles) $(sed-atvariables) < $< > $@
chmod 755 $@
$(outdir)/%: %.py $(config_make) $(depth)/VERSION
$(call ly_progress,Making,$@,(sed))
sed $(sed-atfiles) $(sed-atvariables) < $< > $@
chmod 755 $@
|