summaryrefslogtreecommitdiffstats
path: root/Build/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Build/Makefile')
-rw-r--r--Build/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Build/Makefile b/Build/Makefile
new file mode 100644
index 0000000..8b31c12
--- /dev/null
+++ b/Build/Makefile
@@ -0,0 +1,13 @@
+
+CC=gcc
+SOURCEDIR=../NaiveFFT
+LDFLAGS=-lm
+
+make:
+ $(CC) -c $(SOURCEDIR)/main.c -g3
+ $(CC) main.o -o NaiveFFT $(LDFLAGS)
+
+
+web:
+ darkhttpd ./ --port 12345
+