summaryrefslogtreecommitdiffhomepage
path: root/SCIKit/makefile
blob: 7757440e512a86789df52514ae6eddcc6045203d (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__NEWOS_SYMS__
OUTPUT=libSCI.dll

.PHONY: build-sci
build-sci:
	$(CC) $(wildcard *.cxx) $(FLAGS) -o $(OUTPUT)