# SScript makefile. If the default includes don't work, you might need
# to customize the libraries.

CC = gcc
CFLAGS = -O

all:
	${CC} -o sscript sscript.c gui-tk.c utils.c ssdb.c ssdb2.c

install:
	cp sscript.exe ../sscript.exe
clean:
	rm *.o
