16 lines
		
	
	
	
		
			412 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			412 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all: build-server
 | 
						|
 | 
						|
Q ?= @
 | 
						|
 | 
						|
# By default, the following makefile rules will use the compiled version
 | 
						|
# of the applications (such as dnsmanagerd and dnsmanagerctl),
 | 
						|
# not the ones from the system (in /usr/local/bin/ for example).
 | 
						|
# To avoid that, use: "make <rule> LOC="
 | 
						|
LOC ?= ./bin/
 | 
						|
 | 
						|
include mk/build.mk
 | 
						|
include mk/commands.mk
 | 
						|
include mk/install.mk
 | 
						|
include mk/setup.mk
 | 
						|
include mk/dev.mk
 | 
						|
-include mk/migration.mk
 |