Skip to content
Snippets Groups Projects
Commit 70aba520 authored by Daniel Kochmański's avatar Daniel Kochmański
Browse files

Makefile: completely remove case_mode from the source code

parent 31c0f747
No related branches found
No related tags found
No related merge requests found
......@@ -9,24 +9,6 @@ SHARED_EXT = so
LISP = ../src/lispi$(exe)
DCL = dcli
# Set the case mode when building and dumping an image
# case_mode:
# ansi -- traditional case-insensitive upper-case CL
# modern -- case-sensitive lower-case CL
case_mode = ansi
ifeq ($(case_mode),ansi)
CASE_MODE = :case-insensitive-upper
endif
ifeq ($(case_mode),modern)
CASE_MODE = :case-sensitive-lower
endif
ifndef CASE_MODE
..........................case_mode not defined or bad value...................
endif
CL = $(LISP) -I $(DCL)
CLOPTS = -qq -batch -backtrace-on-error -locale japan.euc
......
......@@ -18,7 +18,6 @@ compile: FORCE $(PRODUCT-OBJS) $(ICS-PRODUCT-OBJS) $(compile_depends)
echo '(setq sys::*libxt-pathname* "$(XTLIB)")' >> build.tmp
echo '(setq sys::*libx11-pathname* "$(XLIB)")' >> build.tmp
echo '(setq sys::*libwnn-pathname* "$(WNNLIB)")' >> build.tmp
echo '(excl:set-case-mode $(CASE_MODE))' >> build.tmp
echo '(load "misc/compile-1.lisp")' >> build.tmp
echo '(declaim (optimize (speed $(SPEED)) (debug $(DEBUG)) (safety $(SAFETY))))' >> build.tmp
echo '(setq *compile-print* $(compile_print))' >> build.tmp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment