mirror of https://github.com/wb2osz/direwolf.git
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			417 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			417 B
		
	
	
	
		
			Makefile
		
	
	
	
# Select proper Makefile for operating system.
 | 
						|
# The Windows version is built with the help of Cygwin. 
 | 
						|
 | 
						|
# In my case, I see CYGWIN_NT-6.1-WOW so we don't check for 
 | 
						|
# equal to some value.   Your mileage my vary.
 | 
						|
 | 
						|
win := $(shell uname | grep CYGWIN)
 | 
						|
dar := $(shell uname | grep Darwin)
 | 
						|
 | 
						|
ifneq ($(win),)
 | 
						|
   include Makefile.win
 | 
						|
else ifeq ($(dar),Darwin)
 | 
						|
   include Makefile.macosx
 | 
						|
else
 | 
						|
   include Makefile.linux
 | 
						|
endif
 |