aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-05-13 22:43:17 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-05-13 22:43:17 +0200
commit825a80b7efe9d40c7b9da61b8a508e89f47da856 (patch)
treef8b9c209f7697377882c37e16fd593295fa9c34d /Makefile
downloadpso-825a80b7efe9d40c7b9da61b8a508e89f47da856.tar.gz
pso-825a80b7efe9d40c7b9da61b8a508e89f47da856.zip
My simple particle swarm optimization
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ea72a7e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+CC=gcc
+CFLAGS=-Wall -Werror -g -O3
+LDFLAGS=-lm -lpthread
+
+.PHONY: all clean
+
+all: pso
+
+pso: pso.c pso.h problems.h
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ pso.c
+
+clean:
+ rm -rf pso