blob: 4f4adf8e38f69c324223ebb6b6d9e75fba9dfae0 (
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Copyright (C) 1997 Robert de Bath <robert@mayday.cix.co.uk>
# This file is part of the Linux-8086 Development environment and is
# distributed under the GNU General Public License.
TARGETS= \
clean bcc unproto copt as86 ld86 elksemu \
install install-all install-bcc install-emu install-lib \
install-lib2 install-ln install-man install-other \
all-libs alt-libs library lib-386 lib-bsd lib-dos lib-fast lib-stand \
config other tests dis88 doselks bootblocks ld86r
ELKSSRC= /usr/src/elks
PREFIX= /usr
LIBPRE= $(PREFIX)/bcc
BINDIR= $(PREFIX)/bin
LIBDIR= $(LIBPRE)/lib/bcc
CFLAGS= -O
# Some makes take the last of a list as the default ...
all: make.fil
PATH="`pwd`/bin:$$PATH" $(MAKE) -f make.fil TOPDIR=`pwd` $@
$(TARGETS): make.fil
PATH="`pwd`/bin:$$PATH" $(MAKE) -f make.fil TOPDIR=`pwd` $@
$(TARGETS): phony
phony:
ld: ld86
as: as86
realclean:
-[ ! -f make.fil ] || $(MAKE) -f make.fil TOPDIR=`pwd` $@
-rm -f make.fil ifdef ifdef.o
make.fil: ifdef makefile.in
./ifdef -MU makefile.in >tmp.mak
sed \
-e "s:%PREFIX%:$(PREFIX):" \
-e "s:%LIBPRE%:$(LIBPRE):" \
-e "s:%BINDIR%:$(BINDIR):" \
-e "s:%LIBDIR%:$(LIBDIR):" \
-e "s:%ELKSSRC%:$(ELKSSRC):" \
-e "s:%CC%:$(CC):" \
-e "s:%CFLAGS%:$(CFLAGS):" \
-e "s:%LDFLAGS%:$(LDFLAGS):" \
< tmp.mak > make.tmp
mv -f make.tmp make.fil
@rm -f tmp.mak
ifdef: ifdef.o
$(CC) $(LDFLAGS) -o ifdef ifdef.o
ifdef.o: ifdef.c
$(CC) $(CFLAGS) $(IFDEFFLAGS) -c ifdef.c
Uninstall: phony
@# CHECK FROM HERE
@make -n Uninstall
@echo 'Are you really sure... have you checked this... ^C to interrupt'
@read line
rm -rf /usr/bcc
rm -f $(BINDIR)/bcc $(BINDIR)/as86_encap $(BINDIR)/dis86
rm -f $(BINDIR)/as86 $(BINDIR)/ld86
rm -f $(BINDIR)/objdump86 $(BINDIR)/nm86 $(BINDIR)/size86
rm -f /lib/elksemu
rm -f /usr/lib/liberror.txt
rm -f /usr/man/man1/elks.1* /usr/man/man1/elksemu.1*
rm -f /usr/man/man1/dis86.1* /usr/man/man1/bcc.1*
rm -f /usr/man/man1/as86.1* /usr/man/man1/ld86.1*
@# TO HERE
distribution:
@rm -f /tmp/linux-86 || true
@[ ! -f Copy_dist ] || sh Copy_dist
mkdir -p -m 0777 /tmp/Dist
[ -d /tmp/linux-86 ] || ln -s `pwd` /tmp/linux-86
cd /tmp &&\
$(MAKE) -C linux-86 realclean &&\
$(MAKE) -C linux-86/libc Libc_version &&\
VER=`cat linux-86/Libc_version` &&\
tar cf Dist/Dev86src-$$VER.tar linux-86/*
gzip -f9 /tmp/Dist/Dev86src-*.tar &
cd /tmp &&\
VER=`cat linux-86/Libc_version` &&\
ln -s linux-86/as as86 &&\
cp -p linux-86/man/as86.1 as86/as86.1 &&\
cp -p linux-86/COPYING as86/COPYING &&\
tar cf Dist/as86-$$VER.tar `find as86/* -prune -type f` &&\
rm as86/as86.1 as86
gzip -f9 /tmp/Dist/as86-*.tar &
cd /tmp/linux-86 &&\
VER=`cat Libc_version` &&\
make -C bin86 grab &&\
tar cf /tmp/Dist/bin86-$$VER.tar bin86 &&\
make -C bin86 ungrab
gzip -f9 /tmp/Dist/bin86-*.tar &
cd /tmp &&\
VER=`cat linux-86/Libc_version` &&\
ln -s linux-86/libc libc-$$VER &&\
tar cf Dist/libc-8086-$$VER.tar libc-$$VER/* &&\
rm libc-$$VER
gzip -f9 /tmp/Dist/libc-8086-*.tar &
cd /tmp &&\
VER=`cat linux-86/Libc_version` &&\
$(MAKE) -C /tmp/linux-86 install \
ARFLAGS=q DIST=/tmp/linux-86-dist ELKSSRC=/dev/null &&\
$(MAKE) -C /tmp/linux-86 other &&\
tar cf /tmp/Dist/Dev86bin-$$VER.tar -C /tmp/linux-86-dist . &&\
rm -f /tmp/Dist/Dev86clb-$$VER.zip Bcc &&\
ln -s /tmp/linux-86 Bcc &&\
zip -9rpk /tmp/Dist/Dev86clb-$$VER.zip \
Bcc/lib/crt0.o Bcc/lib/libc.a Bcc/lib/libbsd.a \
Bcc/lib/libdos.a Bcc/lib/libc_f.a Bcc/lib/libc_s.a \
Bcc/lib/i386/crt0.o Bcc/lib/i386/libc.a &&\
rm Bcc
gzip -v9f /tmp/Dist/Dev86bin-*.tar
@rm /tmp/linux-86 || true
|