picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 95fd604242ff8a626af4be932bfccde5703527ff
parent 0d797a8f34ff0754431844c1e3809e58373fca91
Author: Alexander Burger <abu@software-lab.de>
Date:   Thu, 16 Jun 2011 14:49:09 +0200

Minor: Changed spaces to TABs
Diffstat:
Msrc64/Makefile | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src64/Makefile b/src64/Makefile @@ -1,4 +1,4 @@ -# 18apr11abu +# 16jun11abu # (c) Software Lab. Alexander Burger .SILENT: @@ -9,15 +9,15 @@ lib = ../lib ifeq ($(shell uname), Linux) OS = Linux SYS = linux - ifeq ($(shell uname -m), x86_64) - ARCH = x86-64 - AS = as - else - ifeq ($(shell uname -m), ppc64) - ARCH = ppc64 - AS = as -mppc64 -a64 - endif - endif + ifeq ($(shell uname -m), x86_64) + ARCH = x86-64 + AS = as + else + ifeq ($(shell uname -m), ppc64) + ARCH = ppc64 + AS = as -mppc64 -a64 + endif + endif LD-MAIN = gcc -m64 -rdynamic -lc -lm -ldl LD-SHARED = gcc -m64 -shared -export-dynamic STRIP = strip