klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

commit 2f19a1c46d9f0bb1b874f9fa2e558b198539fcb6
parent d1151169f9fdb7c724d3415d8ca3f68e8c317758
Author: Andres Navarro <canavarro82@gmail.com>
Date:   Wed, 29 Feb 2012 01:24:33 -0300

Small comment in makefile for windows.

Diffstat:
Msrc/Makefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/Makefile b/src/Makefile @@ -12,7 +12,10 @@ CFLAGS=$(if $(DEBUG_NO_OPT),-O0,-O2) $(if $(DEBUG_SYMBOLS),-g) -std=gnu99 -Wall $(if $(DEBUG_ASSERTS),-DKUSE_ASSERTS=1 )-m32 $(MYCFLAGS) AR= ar rcu RANLIB= ranlib + +# Use "RM= del /q /f" if you want to compile with MinGW without using MSYS RM= rm -f + LIBS=-lm $(MYLIBS) # Set USE_LIBFFI=1 (or other nonempty string) to enable libffi-dependent @@ -81,7 +84,7 @@ $(KRN_T): $(KRN_O) $(KRN_A) $(CC) -o $@ $(MYLDFLAGS) $(KRN_O) $(KRN_A) $(LIBS) clean: - $(RM) $(ALL_T) $(ALL_O) kgffi.o TAGS + $(RM) $(ALL_T) $(ALL_O) kgffi.o klisp01.dll klisp.exe TAGS # XXX this fails if USE_LIBFFI is not defined depend: