Skip to content
Snippets Groups Projects
Select Git revision
  • d8729628141eedd3a557384f68180784edf89501
  • master default protected
  • Bugfixes_before_library_factorization
  • offer-multiple-rules
  • V6.2.4
  • V6.2.3
  • AwoCoupon_V1.2
  • V6.2.2
  • VMCoupon_V1.0
  • AwoCoupon_V1.1
  • V6.2.1
  • V6.1.7
  • V6.2
  • V6.1.6
  • V6.1.4
  • V6.1.5
  • V6.1.3
  • V6.1.2
  • V6.1.1
  • V6.1
  • V6.0
  • V5.99.1
  • V5.99
  • AwoCoupon_V1.0
24 results

plg_vmshipment_rules_shipping_advanced_v1.1.0.zip

Blame
  • Makefile 925 B
    BASE=downloads_for_sale
    PLUGINTYPE=vmcustom
    VERSION=1.8
    
    PLUGINFILES=$(BASE).php $(BASE).script.php $(BASE).xml index.html
    
    TRANSLATIONS=$(call wildcard,language/*/*.plg_$(PLUGINTYPE)_$(BASE).*ini) 
    INDEXFILES=$(BASE)/index.html language/index.html $(call wildcard,language/*/index.html)
    ELEMENTS=$(call wildcard,elements/*.php) elements/index.html
    FIELDS=$(call wildcard,fields/*.php) fields/index.html
    TMPLFILES=$(call wildcard,$(BASE)/tmpl/*.php) $(BASE)/index.html $(BASE)/tmpl/index.html
    ASSETS=$(call wildcard,$(BASE)/assets/*.png) $(call wildcard,$(BASE)/assets/*.css) $(BASE)/assets/index.html
    ZIPFILE=plg_$(PLUGINTYPE)_$(BASE)_v$(VERSION).zip
    
    
    zip: $(PLUGINFILES) $(TRANSLATIONS) $(ELEMENTS) $(TMPLFILES)
    	@echo "Packing all files into distribution file $(ZIPFILE):"
    	@zip -r $(ZIPFILE) $(PLUGINFILES) $(TRANSLATIONS) $(ELEMENTS) $(FIELDS) $(INDEXFILES) $(TMPLFILES) $(ASSETS) LICENSE.txt
    
    clean:
    	rm -f $(ZIPFILE)