diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-05-24 09:21:24 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-05-24 09:21:24 -0400 |
| commit | 0ab6c067dc6b3c611d288ef0e411883d45a99b24 (patch) | |
| tree | 77777f31ce353c25954b0c9aaff5d4cb6e8303c8 /Makefile | |
| download | wi-0ab6c067dc6b3c611d288ef0e411883d45a99b24.zip | |
equilibrium specific water content
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
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} $^ |