From 0ab6c067dc6b3c611d288ef0e411883d45a99b24 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 24 May 2024 09:21:24 -0400 Subject: equilibrium specific water content --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..28edb00 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +CC = gcc +CFLAGS = -std=c99 -Wall -pedantic -Wno-deprecated-declarations +LDFLAGS = -lm -lgsl + +wi: wi.o + ${CC} -o $@ ${LDFLAGS} $^ + +wi.o: wi.c + ${CC} -o $@ -c ${CFLAGS} $^ -- cgit v1.2.3