46 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			46 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
| tag = $(shell git describe)
 | |
| VERSION = ${subst v,,$(tag)}
 | |
| RELEASE_DIR = ./build
 | |
| RELEASE_FILE = phpservermon-$(VERSION)
 | |
| 
 | |
| help:
 | |
| 	@echo ' PHP Server Monitor - $(tag)'
 | |
| 	@echo ' - make export [tag=...]  - create a new release from tag '
 | |
| 	@echo ' - make install           - install all dependencies '
 | |
| 
 | |
| install:
 | |
| 	@echo 'Downloading dependencies using Composer'
 | |
| 	php composer.phar install
 | |
| 	@echo 'Install complete '
 | |
| 
 | |
| export:
 | |
| 	@echo 'Building release for tag $(tag) '
 | |
| 	mkdir -p $(RELEASE_DIR) $(RELEASE_DIR)/$(RELEASE_FILE)
 | |
| 	rm -rf $(RELEASE_DIR)/$(RELEASE_FILE)/*
 | |
| 	git archive $(tag) | tar -xf - -C $(RELEASE_DIR)/$(RELEASE_FILE)/
 | |
| 	#find $(RELEASE_DIR)/$(RELEASE_FILE) -name "*.php" -exec sed -i "" "s/@package_version@/$(tag)/" {} \; # for osx
 | |
| 	find $(RELEASE_DIR)/$(RELEASE_FILE) -name "*.php" -exec sed -i "s/@package_version@/$(tag)/" {} \; # for linux
 | |
| 	@echo 'Testing on syntax errors (thats all the automated testing your are going to get for now..) '
 | |
| 	find $(RELEASE_DIR)/$(RELEASE_FILE) -name "*.php" | xargs -I file php -l file
 | |
| 	@echo 'Downloading dependencies'
 | |
| 	cd $(RELEASE_DIR)/$(RELEASE_FILE); php composer.phar install; php composer.phar dump-autoload --optimize; cd ../../;
 | |
| 	rm -f $(RELEASE_DIR)/$(RELEASE_FILE)/composer.phar
 | |
| 	rm -f $(RELEASE_DIR)/$(RELEASE_FILE)/composer.json
 | |
| 	rm -f $(RELEASE_DIR)/$(RELEASE_FILE)/composer.lock
 | |
| 	@echo 'Building HTML documentation using sphinx (http://sphinx-doc.org/)'
 | |
| 	mkdir -p $(RELEASE_DIR)/$(RELEASE_FILE)/docs/html
 | |
| 	cd $(RELEASE_DIR)/$(RELEASE_FILE)/docs; make BUILDDIR=. html; cd ../../../;
 | |
| 	@echo 'Cleaning up docs dir'
 | |
| 	rm -f $(RELEASE_DIR)/$(RELEASE_FILE)/Makefile
 | |
| 	rm -f $(RELEASE_DIR)/$(RELEASE_FILE)/docs/Makefile
 | |
| 	rm -f $(RELEASE_DIR)/$(RELEASE_FILE)/docs/make.bat
 | |
| 	rm -f $(RELEASE_DIR)/$(RELEASE_FILE)/docs/conf.py
 | |
| 	@echo 'Setting folder and file permissions'
 | |
| 	find $(RELEASE_DIR)/$(RELEASE_FILE) -type f | xargs chmod 0644
 | |
| 	find $(RELEASE_DIR)/$(RELEASE_FILE) -type d | xargs chmod 0755
 | |
| 	@echo 'Creating archives'
 | |
| 	cd $(RELEASE_DIR); zip -rq $(RELEASE_FILE).zip ./$(RELEASE_FILE); cd ../;
 | |
| 	cd $(RELEASE_DIR); tar -pczf $(RELEASE_FILE).tar.gz ./$(RELEASE_FILE); cd ../;
 | |
| 	#rm -rf $(RELEASE_DIR)/$(RELEASE_FILE)
 | |
| 	@echo 'Building release finished '
 |