summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-01-06 12:23:42 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-01-06 12:23:42 -0500
commit177bea75a11bc62915095213c351c8385ea12226 (patch)
tree3e5c5c7103e082d152c23bcaead60740bd1d8550 /Makefile
downloadmath-utils-177bea75a11bc62915095213c351c8385ea12226.tar.gz
Initial commit of cdf program and basic build system
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0374e62
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,4 @@
+all: bin/cdf
+
+bin/cdf: src/cdf.c include/cdf.h
+ gcc -std=c23 -Iinclude src/cdf.c -o bin/cdf