summaryrefslogtreecommitdiffstats
path: root/Build
diff options
context:
space:
mode:
authorZoRo <dos21h@gmail.com>2021-08-25 07:51:01 +0100
committerZoRo <dos21h@gmail.com>2021-08-25 07:51:01 +0100
commitf29bfb55fae083189e060a08f6e266a56d52fc6a (patch)
tree117df8e819c08cd1f4a5624ad91cd3f2feb83a52 /Build
parentdb01e1264a89e5a40f1e730d9d80679faf6943f8 (diff)
downloadNaiveFFT-f29bfb55fae083189e060a08f6e266a56d52fc6a.tar.gz
NaiveFFT-f29bfb55fae083189e060a08f6e266a56d52fc6a.zip
Add linux build
Diffstat (limited to 'Build')
-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
+