--- linux/Makefile 2018/04/24 18:01:42 1.1.1.3 +++ linux/Makefile 2018/04/24 18:11:55 1.1.1.11 @@ -1,123 +1,178 @@ # +# 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 + +# +# uncomment the correct keyboard: +# +# The value of KBDFLAGS should be or'ed together from the following +# bits, depending on which features you want enabled. +# 0x80 - Off: the Alt key will set bit 7 if pressed together with +# another key. +# On: the Alt key will NOT set the high bit; an escape +# character is prepended instead. +# The least significant bits control if the following keys are "dead". +# The key is dead by default if the bit is on. +# 0x01 - backquote (`) +# 0x02 - accent acute +# 0x04 - circumflex (^) +# 0x08 - tilde (~) +# 0x10 - dieresis (umlaut) + +KEYBOARD = -DKBD_FINNISH -DKBDFLAGS=0 +# KEYBOARD = -DKBD_FINNISH_LATIN1 -DKBDFLAGS=0x9F +# KEYBOARD = -DKBD_US -DKBDFLAGS=0 +# KEYBOARD = -DKBD_GR -DKBDFLAGS=0 +# KEYBOARD = -DKBD_GR_LATIN1 -DKBDFLAGS=0x9F +# KEYBOARD = -DKBD_FR -DKBDFLAGS=0 +# KEYBOARD = -DKBD_FR_LATIN1 -DKBDFLAGS=0x9F +# KEYBOARD = -DKBD_UK -DKBDFLAGS=0 +# KEYBOARD = -DKBD_DK -DKBDFLAGS=0 +# KEYBOARD = -DKBD_DK_LATIN1 -DKBDFLAGS=0x9F +# KEYBOARD = -DKBD_DVORAK -DKBDFLAGS=0 +# KEYBOARD = -DKBD_SG -DKBDFLAGS=0 +# KEYBOARD = -DKBD_SG_LATIN1 -DKBDFLAGS=0x9F +# KEYBOARD = -DKDB_NO + +# +# comment this line if you don't want the emulation-code +# + +MATH_EMULATION = -DKERNEL_MATH_EMULATION + +# +# standard CFLAGS +# + +CFLAGS =-Wall -O6 -fomit-frame-pointer + +# # if you want the ram-disk device, define this to be the # size in blocks. # -RAMDISK = #-DRAMDISK=512 + +#RAMDISK = -DRAMDISK=512 AS86 =as86 -0 -a LD86 =ld86 -0 -AS =gas -LD =gld -LDFLAGS =-s -x -M -CC =gcc $(RAMDISK) -CFLAGS =-Wall -O -fstrength-reduce -fomit-frame-pointer \ --fcombine-regs -mstring-insns -CPP =cpp -nostdinc -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'. +# If you want to preset the SVGA mode, uncomment the next line and +# set SVGA_MODE to whatever number you want. +# Set it to -DSVGA_MODE=NORMAL_VGA if you just want the EGA/VGA mode. +# The number is the same as you would ordinarily press at bootup. # -ROOT_DEV=/dev/hd6 +#SVGA_MODE= -DSVGA_MODE=1 -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 +AS =as +LD =ld +HOSTCC =gcc -static +CC =gcc -nostdinc -I$(KERNELHDRS) +MAKE =make +CPP =$(CC) -E +AR =ar + +ARCHIVES =kernel/kernel.o mm/mm.o fs/fs.o net/net.o +FILESYSTEMS =fs/minix/minix.o fs/ext/ext.o fs/msdos/msdos.o +DRIVERS =kernel/blk_drv/blk_drv.a kernel/chr_drv/chr_drv.a \ + kernel/blk_drv/scsi/scsi.a +MATH =kernel/math/math.a +LIBS =lib/lib.a +SUBDIRS =kernel mm fs net lib + +KERNELHDRS =/usr/src/linux/include .c.s: - $(CC) $(CFLAGS) \ - -nostdinc -Iinclude -S -o $*.s $< + $(CC) $(CFLAGS) -S $< .s.o: $(AS) -c -o $*.o $< .c.o: - $(CC) $(CFLAGS) \ - -nostdinc -Iinclude -c -o $*.o $< + $(CC) $(CFLAGS) -c -o $*.o $< + +all: Version Image -all: Image +linuxsubdirs: dummy + @for i in $(SUBDIRS); do (cd $$i; echo $$i; $(MAKE)) || exit; done + +Version: + @./makever.sh + @echo \#define UTS_RELEASE \"0.97-`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 - tools/build boot/bootsect boot/setup tools/system $(ROOT_DEV) > Image + 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 + dd bs=8192 if=Image of=/dev/fd0 tools/build: tools/build.c - $(CC) $(CFLAGS) \ + $(HOSTCC) $(CFLAGS) \ -o tools/build tools/build.c boot/head.o: boot/head.s -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 > System.map - -kernel/math/math.a: - (cd kernel/math; make) - -kernel/blk_drv/blk_drv.a: - (cd kernel/blk_drv; make) - -kernel/chr_drv/chr_drv.a: - (cd kernel/chr_drv; make) - -kernel/kernel.o: - (cd kernel; make) - -mm/mm.o: - (cd mm; make) - -fs/fs.o: - (cd fs; make) - -lib/lib.a: - (cd lib; make) +tools/system: boot/head.o init/main.o linuxsubdirs + $(LD) $(LDFLAGS) -M boot/head.o init/main.o \ + $(ARCHIVES) \ + $(FILESYSTEMS) \ + $(DRIVERS) \ + $(MATH) \ + $(LIBS) \ + -o tools/system > System.map 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 $(SVGA_MODE) 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 -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 +fs: dummy + $(MAKE) linuxsubdirs SUBDIRS=fs clean: - rm -f Image System.map tmp_make core boot/bootsect boot/setup + 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) + for i in $(SUBDIRS); do (cd $$i; $(MAKE) clean); done backup: clean - (cd .. ; tar cf - linux | compress - > backup.Z) + cd .. ; tar cf - linux | compress - > backup.Z sync -dep: +depend dep: sed '/\#\#\# Dependencies/q' < Makefile > tmp_make - (for i in init/*.c;do echo -n "init/";$(CPP) -M $$i;done) >> 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) + for i in $(SUBDIRS); do (cd $$i; $(MAKE) dep) || exit; done + +dummy: ### 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 +init/main.o : init/main.c /usr/src/linux/include/stdarg.h /usr/src/linux/include/time.h \ + /usr/src/linux/include/asm/system.h /usr/src/linux/include/asm/io.h /usr/src/linux/include/linux/types.h \ + /usr/src/linux/include/linux/fcntl.h /usr/src/linux/include/linux/config.h /usr/src/linux/include/linux/config_rel.h \ + /usr/src/linux/include/linux/config_ver.h /usr/src/linux/include/linux/config.dist.h \ + /usr/src/linux/include/linux/sched.h /usr/src/linux/include/linux/head.h /usr/src/linux/include/linux/fs.h \ + /usr/src/linux/include/linux/limits.h /usr/src/linux/include/linux/wait.h /usr/src/linux/include/linux/dirent.h \ + /usr/src/linux/include/linux/vfs.h /usr/src/linux/include/linux/minix_fs_sb.h \ + /usr/src/linux/include/linux/ext_fs_sb.h /usr/src/linux/include/linux/msdos_fs_sb.h \ + /usr/src/linux/include/linux/mm.h /usr/src/linux/include/linux/kernel.h /usr/src/linux/include/linux/signal.h \ + /usr/src/linux/include/linux/time.h /usr/src/linux/include/linux/param.h /usr/src/linux/include/linux/resource.h \ + /usr/src/linux/include/linux/tty.h /usr/src/linux/include/linux/termios.h /usr/src/linux/include/linux/unistd.h