From e809e384a956f950906160ef86abfb01b1638075 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 6 May 2025 01:36:18 -0400 Subject: initial commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..70985f9 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +# Makefile for marsond. Should be fine with any make (GNU, BSD, etc). + +CC=gcc +# CC=clang works, too + +COPT=-O2 +CWARN=-Wall +CFLAGS=-std=c99 $(COPT) $(CWARN) + +all: marsond -- cgit v1.2.3