summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com>2024-10-30 18:49:03 +0100
committerGitHub <noreply@github.com>2024-10-30 18:49:03 +0100
commitdb8dd78d4bd08300ce9411f41b118002d687f1ae (patch)
tree4c5c07924dfae73301b1bb3d32a35ecea02f60f4
parent96a4f30672702e34afea4014487936fccb850779 (diff)
Update makefile
-rw-r--r--dev/SCIKit/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/SCIKit/makefile b/dev/SCIKit/makefile
index f18fbeff..b9943b9d 100644
--- a/dev/SCIKit/makefile
+++ b/dev/SCIKit/makefile
@@ -4,9 +4,9 @@
######################
CC=g++
-FLAGS=-I../ -shared -fPIC -D__ZKA_SYMS__
+FLAGS=-I../ -shared -fPIC
OUTPUT=sci.dll
.PHONY: build-sci
build-sci:
- $(CC) $(wildcard .cc) $(FLAGS) -o $(OUTPUT)
+ $(CC) $(wildcard src/*.cc) $(FLAGS) -o $(OUTPUT)