From e99416456afd4aa8bde42016826f9a345291cbf3 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Tue, 8 Dec 2020 21:03:16 -0600 Subject: Initial Commit --- tools/Makefile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tools/Makefile (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000..a9f08af --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,35 @@ +# +# +# Makefile for serialsniff +# +# Author: IT2 Stuart Blake Tener, USNR (N3GWG) +# +# Version 1.00 +# +# This makefile checks to see if we are running under the OS "Darwin" +# and passes the proper macro flag ("MACOS") if we are. +# +# Incidentally, it is noteworthy that MacOS (Darwin) is not the only +# operating system which is deficient some of the library routines +# MacOS is currently defficient. Thus, it is instructive that other +# operating systems names might need to be added for compilation to +# become occurring in their environments. +# +# + +ifndef SYSNAME + SYSNAME := $(shell uname -s) + ifeq ($(SYSNAME),Darwin) + MYFLAGS := "-DMACOS" + REMOVE := srm -vrfz + else + REMOVE := rm -rf + endif +endif + +serialsniff: serialsniff.c + $(CC) $? -o $@ $(LDFLAGS) $(CFLAGS) $(MYFLAGS) + +clean: + $(REMOVE) serialsniff *~ *.o *.bak core tags shar a.out + -- cgit v1.2.3