0fc0414b93
KLONE is a small and fast fully interpreted language intended to be embedded into C applications to provide them with a powerful, yet fast and small extension language. Its syntax is very inspired from Lisp (its external syntax has been kept as close as possible to Common Lisp as possible), but its implementation is original and efficient, to give full extensibility, intimate interfacing to C, incremental garbage collection, and full portability on either K&R or ANSI C. Obtained from: OpenBSD
18 lines
778 B
Text
18 lines
778 B
Text
##################### KLONE CONFIG FILE ######################################
|
|
#: FreeBSD
|
|
# defines this to the binary type: sun4, sun4solaris...
|
|
MACHINE_TYPE = freebsd
|
|
# default path for looking for klone files
|
|
KLONEPATH ="\".:~/kl:!!PREFIX!!/lib/klone\""
|
|
# system-needed libraries
|
|
LIBS =
|
|
# compilation flags , -O or -g
|
|
FLAGS = -O
|
|
# name (absolute or relative) of the compiler: cc, /bin/cc
|
|
C_COMPILER = cc
|
|
# various defines:
|
|
DEFINES = -DSYSV_TIME -DVOID_SIGNALS
|
|
# other linker -specific flags
|
|
LFLAGS =
|
|
# unix command to apply to executable after link
|
|
POSTPROCESSING = :
|