summaryrefslogtreecommitdiffhomepage
path: root/dev/sci/makefile
blob: c66d7a783b3e4888c787b86f8c66bcd75b057eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
######################
# (C) ZKA
# XPCOM/SCI kit makefile.
######################

CC=g++
FLAGS=-I../ -shared -fPIC -D__ZKA_SYMS__
OUTPUT=zka-sci-cxx.dll

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