From 8719b4570a2d10dd49a0d3a47e24f5c55bdda85e Mon Sep 17 00:00:00 2001 From: Amlal Date: Sun, 22 Sep 2024 17:46:11 +0200 Subject: :boom: A big refactor on the filesystem structure. Signed-off-by: Amlal --- dev/sci/makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 dev/sci/makefile (limited to 'dev/sci/makefile') diff --git a/dev/sci/makefile b/dev/sci/makefile new file mode 100644 index 00000000..05593216 --- /dev/null +++ b/dev/sci/makefile @@ -0,0 +1,12 @@ +###################### +# (C) ZKA +# XPCOM/SCI kit makefile. +###################### + +CC=g++ +FLAGS=-I../ -shared -fPIC -D__ZKA_SYMS__ +OUTPUT=sci.dll + +.PHONY: build-sci +build-sci: + $(CC) $(wildcard *.cxx) $(FLAGS) -o $(OUTPUT) -- cgit v1.2.3