toaruos/Makefile

294 lines
9.3 KiB
Makefile
Raw Normal View History

# ToAruOS Primary Build Script
ifneq ($(MAKECMDGOALS),toolchain)
ifeq ($(TOOLCHAIN),)
$(error No toolchain available and you did not ask to build it. Did you forget to source the toolchain config?)
endif
endif
2014-03-09 10:17:47 +04:00
# We always build with our targetted cross-compiler
2013-06-07 08:59:20 +04:00
CC = i686-pc-toaru-gcc
2014-03-11 12:43:42 +04:00
NM = i686-pc-toaru-nm
CXX= i686-pc-toaru-g++
2014-09-13 09:01:24 +04:00
AR = i686-pc-toaru-ar
2014-03-11 12:43:42 +04:00
2014-03-09 10:17:47 +04:00
# Build flags
CFLAGS = -O2 -std=c99
2014-03-09 10:17:47 +04:00
CFLAGS += -finline-functions -ffreestanding
2015-05-04 04:35:40 +03:00
CFLAGS += -Wall -Wextra -Wno-unused-function -Wno-unused-parameter -Wno-format
2014-05-03 05:34:07 +04:00
CFLAGS += -pedantic -fno-omit-frame-pointer
2014-03-25 07:18:40 +04:00
CFLAGS += -D_KERNEL_
2014-03-09 10:17:47 +04:00
# Kernel autoversioning with git sha
CFLAGS += -DKERNEL_GIT_TAG=`util/make-version`
2014-03-09 10:17:47 +04:00
# We have some pieces of assembly sitting around as well...
YASM = yasm
2014-03-09 09:46:43 +04:00
# All of the core parts of the kernel are built directly.
KERNEL_OBJS = $(patsubst %.c,%.o,$(wildcard kernel/*/*.c))
KERNEL_OBJS += $(patsubst %.c,%.o,$(wildcard kernel/*/*/*.c))
# Loadable modules
MODULES = $(patsubst modules/%.c,hdd/mod/%.ko,$(wildcard modules/*.c))
2013-12-14 08:50:04 +04:00
2014-03-09 09:46:43 +04:00
# We also want to rebuild when a header changes.
# This is a naive approach, but it works...
HEADERS = $(shell find kernel/include/ -type f -name '*.h')
# Userspace build flags
USER_CFLAGS = -O3 -m32 -Wa,--32 -g -Iuserspace -std=c99 -U__STRICT_ANSI__
USER_CXXFLAGS = -O3 -m32 -Wa,--32 -g -Iuserspace
USER_BINFLAGS =
# Userspace binaries and libraries
USER_CFILES = $(shell find userspace -not -wholename '*/lib/*' -name '*.c')
USER_CXXFILES = $(shell find userspace -not -wholename '*/lib/*' -name '*.c++')
USER_LIBFILES = $(shell find userspace -wholename '*/lib/*' -name '*.c')
# Userspace output files (so we can define metatargets)
USERSPACE = $(foreach file,$(USER_CFILES),$(patsubst %.c,hdd/bin/%,$(notdir ${file})))
USERSPACE += $(foreach file,$(USER_CXXFILES),$(patsubst %.c++,hdd/bin/%,$(notdir ${file})))
USERSPACE += $(foreach file,$(USER_LIBFILES),$(patsubst %.c,%.o,${file}))
2014-03-09 09:46:43 +04:00
2014-09-13 09:01:24 +04:00
CORE_LIBS = $(patsubst %.c,%.o,$(wildcard userspace/lib/*.c))
2014-03-09 09:46:43 +04:00
# Pretty output utilities.
2011-10-28 02:39:40 +04:00
BEG = util/mk-beg
END = util/mk-end
INFO = util/mk-info
2012-01-19 05:52:11 +04:00
ERRORS = 2>>/tmp/.`whoami`-build-errors || util/mk-error
ERRORSS = >>/tmp/.`whoami`-build-errors || util/mk-error
2011-10-28 02:39:40 +04:00
BEGRM = util/mk-beg-rm
ENDRM = util/mk-end-rm
2011-01-17 22:58:31 +03:00
2014-03-09 09:46:43 +04:00
# Hard disk image generation
GENEXT = genext2fs
DISK_SIZE = `util/disk_size.sh`
DD = dd conv=notrunc
# Specify which modules should be included on startup.
# There are a few modules that are kinda required for a working system
# such as all of the dependencies needed to mount the root partition.
# We can also include things like the debug shell...
2014-04-09 19:50:57 +04:00
# Note that ordering matters - list dependencies first.
2014-03-17 05:39:03 +04:00
BOOT_MODULES := zero random serial
BOOT_MODULES += procfs tmpfs ata
2014-03-17 05:39:03 +04:00
#BOOT_MODULES += dospart
BOOT_MODULES += ext2
BOOT_MODULES += debug_shell
2014-03-17 02:13:27 +04:00
BOOT_MODULES += ps2mouse ps2kbd
2014-03-20 05:56:07 +04:00
BOOT_MODULES += lfbvideo
2014-04-02 11:26:15 +04:00
BOOT_MODULES += packetfs
BOOT_MODULES += snd
2014-05-19 03:11:14 +04:00
BOOT_MODULES += pcspkr
BOOT_MODULES += ac97
2015-05-04 04:35:40 +03:00
BOOT_MODULES += net rtl
# This is kinda silly. We're going to form an -initrd argument..
# which is basically -initrd "hdd/mod/%.ko,hdd/mod/%.ko..."
# for each of the modules listed above in BOOT_MODULES
COMMA := ,
EMPTY :=
SPACE := $(EMPTY) $(EMPTY)
BOOT_MODULES_X = -initrd "$(subst $(SPACE),$(COMMA),$(foreach mod,$(BOOT_MODULES),hdd/mod/$(mod).ko))"
2014-03-09 09:46:43 +04:00
# Emulator settings
EMU = qemu-system-i386
EMUARGS = -sdl -kernel toaruos-kernel -m 1024
EMUARGS += -serial stdio -vga std
EMUARGS += -hda toaruos-disk.img -k en-us -no-frame
EMUARGS += -rtc base=localtime -net nic,model=rtl8139 -net user -soundhw pcspk,ac97
2015-05-04 04:35:40 +03:00
EMUARGS += -net dump -no-kvm-irqchip
EMUARGS += $(BOOT_MODULES_X)
2014-03-09 09:46:43 +04:00
EMUKVM = -enable-kvm
DISK_ROOT = root=/dev/hda
VID_QEMU = vid=qemu,,1280,,720
2014-04-02 07:07:42 +04:00
START_VGA = start=--vga
START_SINGLE = start=--single
WITH_LOGS = logtoserial=1
.PHONY: all system install test toolchain userspace modules
.PHONY: clean clean-soft clean-hard clean-user clean-mods clean-core clean-disk clean-once
2014-03-24 06:32:52 +04:00
.PHONY: run vga term headless
2014-04-12 00:40:26 +04:00
.PHONY: kvm vga-kvm term-kvm headless-kvm
2014-04-27 22:29:21 +04:00
.PHONY: debug debug-kvm debug-term debug-term-kvm
2014-03-09 09:46:43 +04:00
# Prevents Make from removing intermediary files on failure
.SECONDARY:
2011-01-17 22:58:31 +03:00
2014-03-09 09:46:43 +04:00
# Disable built-in rules
.SUFFIXES:
2014-05-16 23:24:21 +04:00
all: system tags userspace
system: toaruos-disk.img toaruos-kernel modules
userspace: ${USERSPACE}
modules: ${MODULES}
2011-01-16 04:01:19 +03:00
# Various different quick options
run: system
2014-04-02 07:07:42 +04:00
${EMU} ${EMUARGS} -append "$(VID_QEMU) $(DISK_ROOT)"
kvm: system
${EMU} ${EMUARGS} ${EMUKVM} -append "$(VID_QEMU) $(DISK_ROOT)"
2014-04-27 22:29:21 +04:00
debug: system
${EMU} ${EMUARGS} -append "$(VID_QEMU) $(WITH_LOGS) $(DISK_ROOT)"
debug-kvm: system
${EMU} ${EMUARGS} ${EMUKVM} -append "$(VID_QEMU) $(WITH_LOGS) $(DISK_ROOT)"
vga: system
2014-04-02 07:07:42 +04:00
${EMU} ${EMUARGS} -append "$(START_VGA) $(DISK_ROOT)"
vga-kvm: system
2014-04-02 07:07:42 +04:00
${EMU} ${EMUARGS} ${EMUKVM} -append "$(START_VGA) $(DISK_ROOT)"
2014-09-04 07:53:36 +04:00
debug-vga: system
${EMU} ${EMUARGS} -append "$(WITH_LOGS) $(START_VGA) $(DISK_ROOT)"
term: system
2014-04-02 07:07:42 +04:00
${EMU} ${EMUARGS} -append "$(VID_QEMU) $(START_SINGLE) $(DISK_ROOT)"
term-kvm: system
2014-04-02 07:07:42 +04:00
${EMU} ${EMUARGS} ${EMUKVM} -append "$(VID_QEMU) $(START_SINGLE) $(DISK_ROOT)"
2014-04-27 22:29:21 +04:00
debug-term: system
${EMU} ${EMUARGS} -append "$(VID_QEMU) $(START_SINGLE) $(WITH_LOGS) $(DISK_ROOT)"
debug-term-kvm: system
${EMU} ${EMUARGS} ${EMUKVM} -append "$(VID_QEMU) $(START_SINGLE) $(WITH_LOGS) $(DISK_ROOT)"
2013-11-28 07:15:28 +04:00
headless: system
2014-04-02 07:07:42 +04:00
${EMU} ${EMUARGS} -display none -append "$(START_VGA) $(DISK_ROOT)"
2014-04-12 00:40:26 +04:00
headless-kvm: system
${EMU} ${EMUARGS} ${EMUKVM} -display none -append "$(START_VGA) $(DISK_ROOT)"
test: system
2014-05-12 10:17:41 +04:00
expect util/test.exp
toolchain:
@cd toolchain; ./toolchain-build.sh
2011-02-19 07:22:25 +03:00
################
# Kernel #
################
2014-05-16 23:24:21 +04:00
toaruos-kernel: kernel/start.o kernel/link.ld kernel/main.o kernel/symbols.o ${KERNEL_OBJS}
2014-03-09 10:17:47 +04:00
@${BEG} "CC" "$<"
2015-05-04 04:35:40 +03:00
@${CC} -T kernel/link.ld ${CFLAGS} -nostdlib -o toaruos-kernel kernel/*.o ${KERNEL_OBJS} -lgcc ${ERRORS}
2014-03-09 10:17:47 +04:00
@${END} "CC" "$<"
2011-10-28 02:39:40 +04:00
@${INFO} "--" "Kernel is ready!"
2011-01-16 04:01:19 +03:00
kernel/symbols.o: ${KERNEL_OBJS} util/generate_symbols.py
@-rm -f kernel/symbols.o
2014-03-11 12:43:42 +04:00
@${BEG} "nm" "Generating symbol list..."
2015-05-04 04:35:40 +03:00
@${CC} -T kernel/link.ld ${CFLAGS} -nostdlib -o toaruos-kernel kernel/*.o ${KERNEL_OBJS} -lgcc ${ERRORS}
2014-03-11 12:43:42 +04:00
@${NM} toaruos-kernel -g | python2 util/generate_symbols.py > kernel/symbols.s
@${END} "nm" "Generated symbol list."
@${BEG} "yasm" "kernel/symbols.s"
@${YASM} -f elf -o $@ kernel/symbols.s ${ERRORS}
@${END} "yasm" "kernel/symbols.s"
2011-02-28 06:08:55 +03:00
kernel/start.o: kernel/start.s
2011-10-28 02:39:40 +04:00
@${BEG} "yasm" "$<"
@${YASM} -f elf -o $@ $< ${ERRORS}
2011-10-28 02:39:40 +04:00
@${END} "yasm" "$<"
2011-02-05 22:27:04 +03:00
2012-01-29 03:06:07 +04:00
kernel/sys/version.o: kernel/*/*.c kernel/*.c
2014-03-10 10:31:13 +04:00
hdd/mod/%.ko: modules/%.c ${HEADERS}
@${BEG} "CC" "$< [module]"
2014-03-10 10:01:30 +04:00
@${CC} -T modules/link.ld -I./kernel/include -nostdlib ${CFLAGS} -c -o $@ $< ${ERRORS}
@${END} "CC" "$< [module]"
kernel/%.o: kernel/%.c ${HEADERS}
2011-10-28 02:39:40 +04:00
@${BEG} "CC" "$<"
2015-05-04 04:35:40 +03:00
@${CC} ${CFLAGS} -nostdlib -g -I./kernel/include -c -o $@ $< ${ERRORS}
2011-10-28 02:39:40 +04:00
@${END} "CC" "$<"
2011-01-17 22:58:31 +03:00
#############
# Userspace #
#############
# Libraries
userspace/%.o: userspace/%.c
@${BEG} "CC" "$<"
@${CC} ${USER_CFLAGS} $(shell util/auto-dep.py --cflags $<) -c -o $@ $< ${ERRORS}
@${END} "CC" "$<"
# Binaries from C sources
define user-c-rule
$1: $2 $(shell util/auto-dep.py --deps $2)
@${BEG} "CC" "$$<"
@${CC} -o $$@ $(USER_CFLAGS) $(USER_BINFLAGS) $$(shell util/auto-dep.py --cflags $$<) $$< $$(shell util/auto-dep.py --libs $$<) ${ERRORS}
@${END} "CC" "$$<"
endef
$(foreach file,$(USER_CFILES),$(eval $(call user-c-rule,$(patsubst %.c,hdd/bin/%,$(notdir ${file})),${file})))
# Binaries from C++ sources
define user-cxx-rule
$1: $2 $(shell util/auto-dep.py --deps $2)
@${BEG} "C++" "$$<"
@${CXX} -o $$@ $(USER_CXXFLAGS) $(USER_BINFLAGS) $$(shell util/auto-dep.py --cflags $$<) $$< $$(shell util/auto-dep.py --libs $$<) ${ERRORS}
@${END} "C++" "$$<"
endef
$(foreach file,$(USER_CXXFILES),$(eval $(call user-cxx-rule,$(patsubst %.c++,hdd/bin/%,$(notdir ${file})),${file})))
2014-09-13 09:01:24 +04:00
hdd/usr/lib/libtoaru.a: ${CORE_LIBS}
@${BEG} "AR" "$@"
@${AR} rcs $@ ${CORE_LIBS}
@mkdir -p hdd/usr/include/toaru
@cp userspace/lib/*.h hdd/usr/include/toaru/
@${END} "AR" "$@"
####################
# Hard Disk Images #
####################
2015-05-04 04:35:40 +03:00
toaruos-disk.img: ${USERSPACE} util/devtable
@${BEG} "hdd" "Generating a Hard Disk image..."
@-rm -f toaruos-disk.img
@${GENEXT} -B 4096 -d hdd -D util/devtable -U -b ${DISK_SIZE} -N 4096 toaruos-disk.img ${ERRORS}
@${END} "hdd" "Generated Hard Disk image"
@${INFO} "--" "Hard disk image is ready!"
2012-01-27 11:38:08 +04:00
##############
# ctags #
##############
2014-05-05 04:17:40 +04:00
tags: kernel/*/*.c kernel/*.c userspace/**/*.c modules/*.c
2012-01-27 11:38:08 +04:00
@${BEG} "ctag" "Generating CTags..."
2014-05-05 04:17:40 +04:00
@-ctags -R --c++-kinds=+p --fields=+iaS --extra=+q kernel userspace modules util ${ERRORS}
2012-01-27 11:38:08 +04:00
@${END} "ctag" "Generated CTags."
2011-02-21 22:29:09 +03:00
###############
# clean #
###############
clean-soft:
2011-10-28 02:39:40 +04:00
@${BEGRM} "RM" "Cleaning modules..."
@-rm -f kernel/*.o
2014-03-17 00:30:25 +04:00
@-rm -f kernel/*/*.o
@-rm -f ${KERNEL_OBJS}
@${ENDRM} "RM" "Cleaned modules"
clean-user:
@${BEGRM} "RM" "Cleaning userspace products..."
@-rm -f ${USERSPACE}
@${ENDRM} "RM" "Cleaned userspace products"
2014-03-11 12:55:51 +04:00
clean-mods:
@${BEGRM} "RM" "Cleaning kernel modules..."
@-rm -f hdd/mod/*
@${ENDRM} "RM" "Cleaned kernel modules"
clean-core:
2011-10-28 02:39:40 +04:00
@${BEGRM} "RM" "Cleaning final output..."
@-rm -f toaruos-kernel
2011-10-28 02:39:40 +04:00
@${ENDRM} "RM" "Cleaned final output"
2011-12-27 05:23:58 +04:00
clean-disk:
@${BEGRM} "RM" "Deleting hard disk image..."
@-rm -f toaruos-disk.img
@${ENDRM} "RM" "Deleted hard disk image"
2014-03-11 12:55:51 +04:00
clean: clean-soft clean-core
@${INFO} "--" "Finished soft cleaning"
clean-hard: clean clean-user clean-mods
2014-03-11 12:55:51 +04:00
@${INFO} "--" "Finished hard cleaning"
2011-04-18 02:44:29 +04:00
# vim:noexpandtab
# vim:tabstop=4
# vim:shiftwidth=4