69 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| # 
 | |
| # This file includes all dynamically changing build-related
 | |
| # variables. 
 | |
| #
 | |
| # Current values are to satisfy MaxScale build process.
 | |
| #
 | |
| # Modify to match with your needs. Do not commit any private
 | |
| # changes to this file!
 | |
| #
 | |
| #
 | |
| 
 | |
| #
 | |
| # Set debug flags
 | |
| #
 | |
| DEBUG := ${MAXSCALE_DEBUG}
 | |
| 
 | |
| #
 | |
| # Set build env
 | |
| #
 | |
| UNIX := Y
 | |
| 
 | |
| # 
 | |
| # Set MaxScale branch directory
 | |
| #
 | |
| ROOT_PATH := $(HOME)/${MAXSCALE_SOURCE}
 | |
| 
 | |
| INC_PATH  := $(HOME)/usr/include
 | |
| #
 | |
| # Set prefix to MySQL Resources
 | |
| #
 | |
| MYSQL_ROOT := $(INC_PATH)/mysql
 | |
| 
 | |
| #
 | |
| # Set prefix of the path to development headers
 | |
| #
 | |
| MYSQL_HEADERS := -I$(INC_PATH) -I$(MYSQL_ROOT)/ -I$(MYSQL_ROOT)/private/ -I$(MYSQL_ROOT)/extra/
 | |
| 
 | |
| #
 | |
| # Set DYNLIB=Y if you want to link MaxScale with dynamic embedded lib
 | |
| #
 | |
| DYNLIB := ${MAXSCALE_DYNLIB}
 | |
| 
 | |
| #
 | |
| # Set path to Embedded MySQL Server
 | |
| #
 | |
| EMBEDDED_LIB := $(HOME)/usr/lib64
 | |
| ifdef DYNLIB
 | |
|   EMBEDDED_LIB := $(HOME)/usr/lib64/dynlib
 | |
| endif
 | |
| #
 | |
| # Set path to MySQL errors file
 | |
| # 
 | |
| ERRMSG := $(HOME)/usr/share/mysql
 | |
| 
 | |
| #
 | |
| # Build a binary that produces profile data
 | |
| #
 | |
| PROFILE := N
 | |
| 
 | |
| #
 | |
| # Build a binary that produces code coverage data
 | |
| #
 | |
| GCOV := N
 | |
| 
 | |
| # Build optional RabbitMQ filter
 | |
| # Requires librabbitmq-devel
 | |
| # 
 | |
| BUILD_RABBITMQ := N
 | 
