summaryrefslogtreecommitdiffhomepage
path: root/SCIKit/makefile
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-31 16:40:11 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-31 16:42:42 +0200
commit63dc1384bcbf8caf4ca53c715628db2c36b0b096 (patch)
tree2937e78fc2f0e729052660bdd1c74fdacf57d0ec /SCIKit/makefile
parent59e0caa55e97f1a998904f404e5fedac3b2b0ec6 (diff)
[IMP] SEE BELOW.
- Support for shared libraries inside a process. - SMP improvements, add the PROCESS_CONTROL_BLOCK, to handle task switching. - Add MUST_PASS in HardwareTimer class. - Add rtl.internal.inl for SCM internal implementation. Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'SCIKit/makefile')
-rw-r--r--SCIKit/makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/SCIKit/makefile b/SCIKit/makefile
index ae08cce2..9a2b836e 100644
--- a/SCIKit/makefile
+++ b/SCIKit/makefile
@@ -1,7 +1,12 @@
######################
# (C) ZKA
+# SCM/SCI kit makefile.
######################
+CC=g++
+FLAGS=-I../ -shared -fPIC -D__NEWOS_SYMS__
+OUTPUT=libSCI.lib
+
.PHONY: build-sci
build-sci:
- g++ *.cxx -I../ -shared -fPIC -o libSCI.lib \ No newline at end of file
+ $(CC) $(wildcard *.cxx) $(FLAGS) -o $(OUTPUT) \ No newline at end of file