forked from Lainports/freebsd-ports
It can be used stand-alone to observe APRS traffic, as a digipeater, APRStt gateway, or Internet Gateway (IGate). It can also be used as a virtual TNC for other applications such as APRSIS32, UI-View32, Xastir, APRS-TW, YAAC, UISS, Linux AX25, SARTrack, RMS Express, BPQ32, Outpost PM and many others. PR: 217791 Submitted by: bsdports@kyle-evans.net
17 lines
385 B
Text
17 lines
385 B
Text
--- Makefile.orig 2017-01-20 00:11:49 UTC
|
|
+++ Makefile
|
|
@@ -6,11 +6,14 @@
|
|
|
|
win := $(shell uname | grep CYGWIN)
|
|
dar := $(shell uname | grep Darwin)
|
|
+free := $(shell uname | grep FreeBSD)
|
|
|
|
ifneq ($(win),)
|
|
include Makefile.win
|
|
else ifeq ($(dar),Darwin)
|
|
include Makefile.macosx
|
|
+else ifeq ($(free),FreeBSD)
|
|
+ include Makefile.FreeBSD
|
|
else
|
|
include Makefile.linux
|
|
endif
|