Skip to content
Snippets Groups Projects
Select Git revision
  • 3b936e740f88fd794d9af8fdf3512deac032ce0e
  • 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

Makefile

Blame
  • Makefile 580 B
    BASE=awocoupon
    PLUGINTYPE=vmshipmentrules
    ZIPBASE=opentools_$(PLUGINTYPE)
    VERSION=1.1
    
    PLUGINFILES=$(BASE).php $(BASE).script.php $(BASE).xml index.html
    
    TRANSLATIONS=$(call wildcard,language/en*/*.plg_$(PLUGINTYPE)_$(BASE).*ini) 
    INDEXFILES=language/index.html $(call wildcard,language/**/index.html)
    ZIPFILE=plg_$(ZIPBASE)_$(BASE)_v$(VERSION).zip
    
    all: zip
    
    zip: $(PLUGINFILES) $(TRANSLATIONS) $(ADVANCEDFILES) $(INDEXFILES)
    	@echo "Packing all files into distribution file $(ZIPFILE):"
    	@zip -r $(ZIPFILE) $(PLUGINFILES) $(TRANSLATIONS) $(INDEXFILES)
    
    clean:
    	rm -f $(ZIPFILE)