summaryrefslogtreecommitdiffhomepage
path: root/dev/SCI/makefile
blob: 4193cd705c8dd90cf9969098a7d3962811b22b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
######################
# (C) ZKA
# SCM/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)