Skip to content

Commit e7569d5

Browse files
committed
Preliminary changes to add FreeBSD support to direwolf
1 parent 6207e2e commit e7569d5

File tree

3 files changed

+564
-2
lines changed

3 files changed

+564
-2
lines changed

Diff for: Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
# The Windows version is built with the help of Cygwin.
33

44
# In my case, I see CYGWIN_NT-6.1-WOW so we don't check for
5-
# equal to some value. Your mileage my vary.
5+
# equal to some value. Your mileage may vary.
66

77
win := $(shell uname | grep CYGWIN)
88
dar := $(shell uname | grep Darwin)
9+
free := $(shell uname | grep FreeBSD)
910

1011
ifneq ($(win),)
1112
include Makefile.win
1213
else ifeq ($(dar),Darwin)
1314
include Makefile.macosx
15+
else ifeq ($(free),FreeBSD)
16+
include Makefile.FreeBSD
1417
else
1518
include Makefile.linux
1619
endif

0 commit comments

Comments
 (0)