blob: f613fdebea7616036b844cdcc76f7d7a95ee7be5 (
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
|
#
# Makefile for elksemu.
#
# Use BCC to make a tiny static a.out version.
ifeq ($(CC),bcc)
CFLAGS=-Ml -ansi -s $(DEFS)
endif
ifeq ($(CC),ncc)
CFLAGS=-Ml -ansi -s $(DEFS)
endif
# Default
ifeq ($(CFLAGS),)
CFLAGS=-O
endif
# Turn on elkemu's strace like facility.
# DEFS=-DDEBUG
# For gcc making a.out with a basically ELF compiler
# CFLAGS=-O2 -fno-strength-reduce -b i486-linuxaout -N -s -static
OBJ=elks.o elks_sys.o elks_signal.o minix.o
elksemu: $(OBJ)
$(CC) $(CFLAGS) -o $@ $^
elks_sys.o: call_tab.v
$(OBJ): elks.h
call_tab.v: dummy
-cp -p ../libc/syscall/call_tab.v . 2>/dev/null
-cp -p ../libc/syscall/defn_tab.v . 2>/dev/null
dummy:
# The kernel patch or module _requires_ this location but binfmt-misc is easy
# to redirect.
install: elksemu
install -d $(DIST)/lib
install -s -o root -g root -m 4555 elksemu $(DIST)/lib/elksemu
clean realclean:
rm -f $(OBJ) binfmt_elks.o elksemu call_tab.v defn_tab.v
module: binfmt_elks.o
# HOW to compile the module...
# BUT remember you don't need it for a recent 2.1.X; use binfmt_misc.
# This matches my compile (2.0.x); yours may be different.
MODCFLAGS=-D__KERNEL__ -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \
-fno-strength-reduce -pipe -m486 -DCPU=486 -DMODULE -DMODVERSIONS \
-include /usr/include/linux/modversions.h
binfmt_elks.o: binfmt_elks.c
gcc -c $(MODCFLAGS) binfmt_elks.c
# This is another option
#MODCFLAGS=-O -fomit-frame-pointer -DCPU=386 -D__KERNEL__ -DMODULE
# Or this ...
#MODCFLAGS=-O -fomit-frame-pointer -D__KERNEL__ -DMODULE -DCONFIG_MODVERSIONS
|