mirror of https://github.com/wb2osz/direwolf.git
10 lines
212 B
Makefile
10 lines
212 B
Makefile
|
# Select proper Makefile for operating system.
|
||
|
# The Windows version is built with the help of Cygwin.
|
||
|
|
||
|
win := $(shell uname | grep CYGWIN)
|
||
|
ifneq ($(win),)
|
||
|
include Makefile.win
|
||
|
else
|
||
|
include Makefile.linux
|
||
|
endif
|