Loading...
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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | # # comment this line if you don't want the emulation-code # MATH_EMULATION = -DKERNEL_MATH_EMULATION # # uncomment the correct keyboard: # KEYBOARD = -DKBD_FINNISH # KEYBOARD = -DKBD_US # KEYBOARD = -DKBD_GR # KEYBOARD = -DKBD_FR # KEYBOARD = -DKBD_UK # KEYBOARD = -DKBD_DK # # uncomment this line if you are using gcc-1.40 # #GCC_OPT = -fcombine-regs -fstrength-reduce # # standard CFLAGS # CFLAGS =-Wall -O6 -fomit-frame-pointer $(GCC_OPT) # # 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 FLOPPY is used by 'build'. # ROOT_DEV = /dev/hdb1 # # if you want the ram-disk device, define this to be the # size in blocks. # #RAMDISK = -DRAMDISK=512 AS86 =as86 -0 -a LD86 =ld86 -0 AS =as LD =ld #LDFLAGS =-s -x -M LDFLAGS = -M CC =gcc $(RAMDISK) MAKE =make CFLAGS="$(CFLAGS)" CPP =cpp -nostdinc -Iinclude ARCHIVES =kernel/kernel.o mm/mm.o fs/fs.o FILESYSTEMS =fs/minix/minix.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) \ -nostdinc -Iinclude -S -o $*.s $< .s.o: $(AS) -c -o $*.o $< .c.o: $(CC) $(CFLAGS) \ -nostdinc -Iinclude -c -o $*.o $< all: Version Image Version: @./makever.sh @echo \#define UTS_RELEASE \"0.95c-`cat .version`\" > include/linux/config_rel.h @echo \#define UTS_VERSION \"`date +%D`\" > include/linux/config_ver.h touch include/linux/config.h Image: boot/bootsect boot/setup tools/system tools/build cp tools/system system.tmp strip system.tmp tools/build boot/bootsect boot/setup system.tmp $(ROOT_DEV) > Image rm system.tmp sync disk: Image dd bs=8192 if=Image of=/dev/PS0 tools/build: tools/build.c $(CC) -static $(CFLAGS) \ -o tools/build tools/build.c boot/head.o: boot/head.s tools/system: __KEEPMAKEFILEO__E.o __KEEPMAKEFILEO__F.o \ $(ARCHIVES) $(FILESYSTEMS) $(DRIVERS) $(MATH) $(LIBS) $(LD) $(LDFLAGS) boot/head.o init/main.o \ $(ARCHIVES) \ $(FILESYSTEMS) \ $(DRIVERS) \ $(MATH) \ $(LIBS) \ -o tools/system > System.map kernel/math/math.a: dummy (cd kernel/math; $(MAKE) MATH_EMULATION="$(MATH_EMULATION)") kernel/blk_drv/blk_drv.a: dummy (cd kernel/blk_drv; $(MAKE)) kernel/chr_drv/chr_drv.a: dummy (cd kernel/chr_drv; $(MAKE) KEYBOARD="$(KEYBOARD)") kernel/kernel.o: dummy (cd kernel; $(MAKE)) mm/mm.o: dummy (cd mm; $(MAKE)) fs/fs.o: dummy (cd fs; $(MAKE)) fs/minix/minix.o: dummy (cd fs/minix; $(MAKE)) lib/lib.a: dummy (cd lib; $(MAKE)) boot/setup: boot/setup.s $(AS86) -o boot/setup.o boot/setup.s $(LD86) -s -o boot/setup boot/setup.o boot/setup.s: boot/setup.S include/linux/config.h $(CPP) -traditional boot/setup.S -o boot/setup.s boot/bootsect.s: boot/bootsect.S include/linux/config.h $(CPP) -traditional boot/bootsect.S -o boot/bootsect.s boot/bootsect: boot/bootsect.s $(AS86) -o boot/bootsect.o boot/bootsect.s $(LD86) -s -o boot/bootsect boot/bootsect.o clean: rm -f Image System.map tmp_make core boot/bootsect boot/setup \ boot/bootsect.s boot/setup.s init/main.s rm -f init/*.o tools/system tools/build boot/*.o (cd mm;make clean) (cd fs;make clean) (cd kernel;make clean) (cd lib;make clean) backup: clean (cd .. ; tar cf - linux | compress - > 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 (cd fs; make dep) (cd kernel; make dep) (cd mm; make dep) (cd lib; make dep) dummy: ### Dependencies: init/main.o : init/main.c include/unistd.h include/sys/stat.h include/sys/types.h \ include/sys/time.h include/time.h include/sys/times.h include/sys/utsname.h \ include/sys/param.h include/sys/resource.h include/utime.h include/linux/sched.h \ include/linux/head.h include/linux/fs.h include/sys/dirent.h include/limits.h \ include/linux/mm.h include/linux/kernel.h include/signal.h include/linux/tty.h \ include/termios.h include/linux/string.h include/asm/system.h include/asm/io.h \ include/stddef.h include/stdarg.h include/fcntl.h |