~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to pcl/impl/kcl/makefile.akcl

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# makefile for making pcl -- W. Schelter.
 
2
 
 
3
#  Directions:
 
4
# make -f makefile.akcl compile
 
5
# make -f makefile.akcl saved_pcl
 
6
 
 
7
SHELL=/bin/sh
 
8
 
 
9
LISP=akcl
 
10
 
 
11
 
 
12
SETUP='(load "pkg.lisp")(load "defsys.lisp")' \
 
13
        '(setq pcl::*default-pathname-extensions* (cons "lisp" "o"))' \
 
14
        '(setq pcl::*pathname-extensions* (cons "lisp" "o"))' \
 
15
        '(load "sys-proclaim.lisp")(compiler::emit-fn t)'
 
16
 
 
17
compile:
 
18
        echo ${SETUP} '(pcl::compile-pcl)' | ${LISP}
 
19
 
 
20
saved_pcl:
 
21
        echo ${SETUP} '(pcl::load-pcl)(si::save-system "saved_pcl")' | ${LISP}
 
22
 
 
23
 
 
24
# remake the sys-package.lisp and sys-proclaim.lisp files
 
25
# Those files may be empty on a first build.
 
26
remake-sys-files:
 
27
        echo ${SETUP} '(pcl::load-pcl)(in-package "PCL")(renew-sys-files)' | ${LISP}
 
28
        cp sys-proclaim.lisp xxx
 
29
        cat xxx | sed -e "s/COMPILER::CMP-ANON//g" > sys-proclaim.lisp
 
30
 
 
31
clean:
 
32
        rm -f *.o