summaryrefslogtreecommitdiffhomepage
path: root/dev/SCIKit/makefile
blob: 1974aed368a285e55e25039567df93e8b7d4bbfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
######################
# (C) ZKA
# SCIKit makefile.
######################

CC=clang++
FLAGS=-I../ -shared -fPIC
OUTPUT=SCIKit.dll

.PHONY: build-sci
build-sci:
	$(CC) $(wildcard src/*.cc) $(FLAGS) -o $(OUTPUT)