summaryrefslogtreecommitdiff
path: root/src/ChezScheme/c/Mf-base
blob: 2dddc636a7a39669e32ee85b7791ad63f0d9eb53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Mf-base
# Copyright 1984-2017 Cisco Systems, Inc.
# 
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# 
# http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

include Mf-config

Include=../boot/$m
PetiteBoot=../boot/$m/petite.boot
SchemeBoot=../boot/$m/scheme.boot
Main=../boot/$m/main.$o
Scheme=../bin/$m/scheme

# CFLAGS is propagated separately:
SetConfigEnv = CC="${CC}" CPPFLAGS="${CPPFLAGS}" AR="${AR}" ARFLAGS="${ARFLAGS}"

# One of these sets is referenced in Mf-config to select between
# linking with kernel.o or libkernel.a

KernelO=../boot/$m/kernel.$o
KernelOLinkDeps=
KernelOLinkLibs=

KernelLib=../boot/$m/libkernel.a
KernelLibLinkDeps=${zlibDep} ${LZ4Dep}
KernelLibLinkLibs=${zlibLib} ${LZ4Lib}

kernelsrc=statics.c segment.c alloc.c symbol.c intern.c gcwrapper.c gc-011.c gc-par.c gc-ocd.c gc-oce.c\
 number.c schsig.c io.c new-io.c print.c fasl.c vfasl.c stats.c foreign.c prim.c prim5.c flushcache.c\
 schlib.c thread.c expeditor.c scheme.c compress-io.c random.c

kernelobj=${kernelsrc:%.c=%.$o} ${mdobj}

kernelhdr=system.h types.h version.h globals.h externs.h segment.h atomic.h gc.c sort.h thread.h config.h compress-io.h itest.c nocurses.h popcount.h

mainsrc=main.c

mainobj:=${mainsrc:%.c=%.$o}

doit: ${Scheme}

source: ${kernelsrc} ${kernelhdr} ${mdsrc} ${mainsrc}

${Main}: ${mainobj}
	cp -p ${mainobj} ${Main}

rootsrc=$(shell cd "${upupsrcdir}"/c; echo *)
${rootsrc}:
ifeq ($(OS),Windows_NT)
	cp -p "${upupsrcdir}"/c/$@ $@
else
	ln -s "${upupsrcdir}"/c/$@ $@
endif

scheme.o: itest.c
scheme.o main.o: config.h
${kernelobj}: system.h types.h version.h externs.h globals.h segment.h atomic.h thread.h config.h sort.h compress-io.h nocurses.h popcount.h
${kernelobj}: ${Include}/equates.h ${Include}/scheme.h
${mainobj}: ${Include}/scheme.h
${kernelobj}: ${zlibHeaderDep} ${LZ4HeaderDep}
gc-011.o gc-par.o gc-ocd.o gc-oce.o: gc.c
gc-011.o gc-ocd.o: ${Include}/gc-ocd.inc
gc-oce.o: ${Include}/gc-oce.inc
gc-par.o: ${Include}/gc-par.inc
gcwrapper.o: ${Include}/heapcheck.inc

../zlib/zlib.h ../zlib/zconf.h: ../zlib/configure.log

../zlib/libz.a: ../zlib/configure.log
	(cd ../zlib; ${MAKE})

LZ4Sources=../lz4/lib/lz4.h ../lz4/lib/lz4frame.h \
           ../lz4/lib/lz4.c ../lz4/lib/lz4frame.c \
           ../lz4/lib/lz4hc.c ../lz4/lib/xxhash.c

.PHONY: run
run:
	env SCHEMEHEAPDIRS=../boot/$m/ ../bin/$m/scheme $(ARGS)

clean:
	rm -f *.$o ${mdclean}
	rm -f Make.out