blob: 581dbebc0b99d76ef6feca7c36eed8dd0286096b (
plain) (
blame)
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
124
125
126
127
128
129
130
131
132
|
# if you want the ram-disk device, define this to be the
# size in blocks.
#
RAMDISK = #-DRAMDISK=512
# This is a basic Makefile for setting the general configuration
include Makefile.header
LDFLAGS += -Ttext 0 -e startup_32
CFLAGS += $(RAMDISK) -Iinclude
CPP += -Iinclude
#
# ROOT_DEV specifies the default root-device when making the image.
# This can be either FLOPPY, /dev/xxxx or empty, in which case the
# default of /dev/hd6 is used by 'build'.
#
ROOT_DEV= #FLOPPY
ARCHIVES=kernel/kernel.o mm/mm.o fs/fs.o
DRIVERS =kernel/blk_drv/blk_drv.a kernel/chr_drv/chr_drv.a
MATH =kernel/math/math.a
LIBS =lib/lib.a
.c.s:
@$(CC) $(CFLAGS) -S -o $*.s $<
.s.o:
@$(AS) -o $*.o $<
.c.o:
@$(CC) $(CFLAGS) -c -o $*.o $<
all: Image
Image: boot/bootsect boot/setup tools/system
@cp -f tools/system system.tmp
@$(STRIP) system.tmp
@$(OBJCOPY) -O binary -R .note -R .comment -R .note.gnu.property system.tmp tools/kernel
@tools/build.sh boot/bootsect boot/setup tools/kernel Image $(ROOT_DEV)
@rm system.tmp
@rm -f tools/kernel
@sync
disk: Image
@dd bs=8192 if=Image of=/dev/fd0
boot/head.o: boot/head.s
@make head.o -C boot/
tools/system: boot/head.o init/main.o \
$(ARCHIVES) $(DRIVERS) $(MATH) $(LIBS)
@$(LD) $(LDFLAGS) boot/head.o init/main.o \
$(ARCHIVES) \
$(DRIVERS) \
$(MATH) \
$(LIBS) \
-o tools/system
@nm tools/system | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aU] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)'| sort > System.map
kernel/math/math.a:
@make -C kernel/math
kernel/blk_drv/blk_drv.a:
@make -C kernel/blk_drv
kernel/chr_drv/chr_drv.a:
@make -C kernel/chr_drv
kernel/kernel.o:
@make -C kernel
mm/mm.o:
@make -C mm
fs/fs.o:
@make -C fs
lib/lib.a:
@make -C lib
boot/setup: boot/setup.s
@make setup -C boot
boot/bootsect: boot/bootsect.s
@make bootsect -C boot
tmp.s: boot/bootsect.s tools/system
@(echo -n "SYSSIZE = (";ls -l tools/system | grep system \
| cut -c25-31 | tr '\012' ' '; echo "+ 15 ) / 16") > tmp.s
@cat boot/bootsect.s >> tmp.s
clean:
@rm -f Image System.map tmp_make core boot/bootsect boot/setup
@rm -f init/*.o tools/system boot/*.o typescript* info bochsout.txt
@for i in mm fs kernel lib boot; do make clean -C $$i; done
info:
@make clean
@script -q -c "make all"
@cat typescript | col -bp | grep -E "warning|Error" > info
@cat info
distclean: clean
@rm -f tag cscope* linux-0.11.* $(CALLTREE)
@(find tools/calltree-2.3 -name "*.o" | xargs -i rm -f {})
@make clean -C tools/calltree-2.3
@make clean -C tools/bochs/bochs-2.3.7
backup: clean
@(cd .. ; tar cf - linux | compress16 - > backup.Z)
@sync
dep:
@sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
@(for i in init/*.c;do echo -n "init/";$(CPP) -M $$i;done) >> tmp_make
@cp tmp_make Makefile
@for i in fs kernel mm; do make dep -C $$i; done
tag: tags
tags:
@ctags -R
cscope:
@cscope -Rbkq
### Dependencies:
init/main.o: init/main.c include/unistd.h include/sys/stat.h \
include/sys/types.h include/sys/times.h include/sys/utsname.h \
include/utime.h include/time.h include/linux/tty.h include/termios.h \
include/linux/sched.h include/linux/head.h include/linux/fs.h \
include/linux/mm.h include/signal.h include/asm/system.h \
include/asm/io.h include/stddef.h include/stdarg.h include/fcntl.h
|