toaruos/Makefile

488 lines
15 KiB
Makefile
Raw Normal View History

2016-12-29 08:43:01 +03:00
# ToaruOS Build Scripts
ifneq ($(MAKECMDGOALS),toolchain)
ifeq ($(TOOLCHAIN),)
2016-12-29 08:43:43 +03:00
$(error $(shell util/helpful-toolchain-error.sh))
2016-12-29 08:43:01 +03:00
else
$(shell util/cache-toolchain.sh)
endif
endif
2016-12-29 08:43:01 +03:00
KERNEL_TARGET=i686-elf
USER_TARGET=i686-pc-toaru
2014-09-13 09:01:24 +04:00
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
2016-12-29 08:43:01 +03:00
# Rules start here.
2016-12-29 10:43:46 +03:00
.PHONY: all system install test toolchain userspace modules cdrom fix-cd
2016-12-29 08:43:01 +03:00
.PHONY: clean clean-soft clean-hard clean-user clean-mods clean-core clean-disk clean-once
.PHONY: run vga term headless quick
.PHONY: debug debug-vga debug-term
.PHONY: virtualbox virtualbox-cdrom run-cdrom
# Prevents Make from removing intermediary files on failure
.SECONDARY:
# Disable built-in rules
.SUFFIXES:
all: $(shell util/detect-make-all.sh)
system: toaruos-disk.img toaruos-kernel modules
userspace: ${USERSPACE}
modules: ${MODULES}
toolchain:
@cd toolchain; ./toolchain-build.sh
###########################
# Emulator Pseudo-targets #
###########################
2014-03-09 09:46:43 +04:00
# 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
BOOT_MODULES += vidset
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-09-05 00:05:17 +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 := ,
2015-05-20 10:12:20 +03:00
EMPTY :=
SPACE := $(EMPTY) $(EMPTY)
BOOT_MODULES_X = -initrd "$(subst $(SPACE),$(COMMA),$(foreach mod,$(BOOT_MODULES),hdd/mod/$(mod).ko))"
2016-12-29 08:43:01 +03:00
# QEMU Configuration
2014-03-09 09:46:43 +04:00
EMU = qemu-system-i386
2016-12-29 08:43:01 +03:00
# Force the SDL backend with no frame and English (US) keyboard.
EMUARGS = -sdl -no-frame -k en-us
# 1GB of RAM
EMUARGS += -m 1024
# Serial debug output to stdio (kernel console)
EMUARGS += -serial stdio
# Bochs VBE display device
EMUARGS += -vga std
# Realtime clock based on localtime (we don't NTP or support timezone configs yet)
EMUARGS += -rtc base=localtime
# Network hardware: RTL8139, usermode network emulation.
EMUARGS += -net nic,model=rtl8139 -net user
# Enable TCP dumps for monitoring.
EMUARGS += -net dump
# Sound hardware: Intel AC'97, PC beeper
EMUARGS += -soundhw pcspk,ac97
# Enable KVM if available, or fall back to TCG
EMUARGS += -M accel=kvm:tcg
# For development images, load the kernel, modules, hard disk.
EMUKARGS = -kernel toaruos-kernel
EMUKARGS += $(BOOT_MODULES_X)
EMUKARGS += -hda toaruos-disk.img
# These arguments are passed to the kernel command line.
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
START_LIVE = start=live-welcome
WITH_LOGS = logtoserial=1
# Various different quick options
run: system
2016-12-30 06:17:59 +03:00
${EMU} ${EMUARGS} ${EMUKARGS} -append "$(VID_QEMU) $(DISK_ROOT)"
2016-09-02 13:59:41 +03:00
quick: system
2016-12-30 06:17:59 +03:00
${EMU} ${EMUARGS} ${EMUKARGS} -append "$(VID_QEMU) $(DISK_ROOT) start=quick-launch"
2014-04-27 22:29:21 +04:00
debug: system
2016-12-30 06:17:59 +03:00
${EMU} ${EMUARGS} ${EMUKARGS} -append "$(VID_QEMU) $(WITH_LOGS) $(DISK_ROOT)"
vga: system
2016-12-30 06:17:59 +03:00
${EMU} ${EMUARGS} ${EMUKARGS} -append "$(START_VGA) $(DISK_ROOT)"
2014-09-04 07:53:36 +04:00
debug-vga: system
2016-12-30 06:17:59 +03:00
${EMU} ${EMUARGS} ${EMUKARGS} -append "$(WITH_LOGS) $(START_VGA) $(DISK_ROOT)"
term: system
2016-12-30 06:17:59 +03:00
${EMU} ${EMUARGS} ${EMUKARGS} -append "$(VID_QEMU) $(START_SINGLE) $(DISK_ROOT)"
2014-04-27 22:29:21 +04:00
debug-term: system
2016-12-30 06:17:59 +03:00
${EMU} ${EMUARGS} ${EMUKARGS} -append "$(VID_QEMU) $(START_SINGLE) $(WITH_LOGS) $(DISK_ROOT)"
2013-11-28 07:15:28 +04:00
headless: system
2016-12-30 06:17:59 +03:00
${EMU} ${EMUARGS} ${EMUKARGS} -display none -append "$(START_VGA) $(DISK_ROOT)"
live: system
2016-12-30 06:17:59 +03:00
${EMU} ${EMUARGS} ${EMUKARGS} -append "$(VID_QEMU) $(START_LIVE) $(DISK_ROOT)"
2016-12-29 08:43:01 +03:00
# Run the cdrom
run-cdrom: toaruos.iso
${EMU} ${EMUARGS} -cdrom toaruos.iso
2016-12-29 08:43:01 +03:00
# Run VirtualBox
virtualbox: system
util/run-virtualbox.sh
virtualbox-cdrom: toaruos.iso
util/run-virtualbox-cdrom.sh
2016-12-29 08:43:01 +03:00
# Run the test suite
test: system
expect util/test.exp
2011-02-19 07:22:25 +03:00
################
# Kernel #
################
2016-12-29 08:43:01 +03:00
# Kernel build flags
CFLAGS = -O2 -std=c99
CFLAGS += -finline-functions -ffreestanding
CFLAGS += -Wall -Wextra -Wno-unused-function -Wno-unused-parameter -Wno-format
CFLAGS += -pedantic -fno-omit-frame-pointer
CFLAGS += -D_KERNEL_
ASFLAGS = --32
# Build kernel with bare elf toolchain
KCC = $(KERNEL_TARGET)-gcc
KNM = $(KERNEL_TARGET)-nm
KCXX= $(KERNEL_TARGET)-g++
KAR = $(KERNEL_TARGET)-ar
KAS = $(KERNEL_TARGET)-as
KSTRIP = $(KERNEL_TARGET)-strip
# Kernel autoversioning with git sha
CFLAGS += -DKERNEL_GIT_TAG=`util/make-version`
# 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))
KERNEL_OBJS += $(patsubst %.c,%.o,$(wildcard kernel/*/*/*.c))
KERNEL_ASMOBJS = $(filter-out kernel/symbols.o,$(patsubst %.S,%.o,$(wildcard kernel/*.S)))
toaruos-kernel: ${KERNEL_ASMOBJS} ${KERNEL_OBJS} kernel/symbols.o
2016-12-15 13:49:10 +03:00
@${BEG} "CC" "$@"
2016-12-25 15:47:01 +03:00
@${KCC} -T kernel/link.ld ${CFLAGS} -nostdlib -o toaruos-kernel ${KERNEL_ASMOBJS} ${KERNEL_OBJS} kernel/symbols.o -lgcc ${ERRORS}
2016-12-15 13:49:10 +03: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_ASMOBJS} ${KERNEL_OBJS} util/generate_symbols.py
@-rm -f kernel/symbols.o
2015-05-20 10:12:20 +03:00
@${BEG} "NM" "Generating symbol list..."
2016-12-25 15:47:01 +03:00
@${KCC} -T kernel/link.ld ${CFLAGS} -nostdlib -o toaruos-kernel ${KERNEL_ASMOBJS} ${KERNEL_OBJS} -lgcc ${ERRORS}
@${KNM} toaruos-kernel -g | python2 util/generate_symbols.py > kernel/symbols.S
2015-05-20 10:12:20 +03:00
@${END} "NM" "Generated symbol list."
@${BEG} "AS" "kernel/symbols.S"
2016-12-25 15:47:01 +03:00
@${KAS} ${ASFLAGS} kernel/symbols.S -o $@ ${ERRORS}
2015-05-20 10:12:20 +03:00
@${END} "AS" "kernel/symbols.S"
2011-02-05 22:27:04 +03:00
2012-01-29 03:06:07 +04:00
kernel/sys/version.o: kernel/*/*.c kernel/*.c
2016-12-15 14:53:34 +03:00
hdd/mod:
@mkdir -p hdd/mod
2016-12-29 08:43:01 +03:00
# Loadable modules
MODULES = $(patsubst modules/%.c,hdd/mod/%.ko,$(wildcard modules/*.c))
# 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')
2016-12-15 14:53:34 +03:00
hdd/mod/%.ko: modules/%.c ${HEADERS} | hdd/mod
@${BEG} "CC" "$< [module]"
2016-12-25 15:47:01 +03:00
@${KCC} -T modules/link.ld -I./kernel/include -nostdlib ${CFLAGS} -c -o $@ $< ${ERRORS}
@${END} "CC" "$< [module]"
2015-05-20 10:12:20 +03:00
kernel/%.o: kernel/%.S
@${BEG} "AS" "$<"
2016-12-25 15:47:01 +03:00
@${KAS} ${ASFLAGS} $< -o $@ ${ERRORS}
2015-05-20 10:12:20 +03:00
@${END} "AS" "$<"
kernel/%.o: kernel/%.c ${HEADERS}
2011-10-28 02:39:40 +04:00
@${BEG} "CC" "$<"
2016-12-25 15:47:01 +03:00
@${KCC} ${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 #
#############
2016-12-29 08:43:01 +03:00
# Userspace build flags
USER_CFLAGS = -O3 -m32 -Wa,--32 -g -Iuserspace -std=c99 -U__STRICT_ANSI__ -Lhdd/usr/lib
USER_CXXFLAGS = -O3 -m32 -Wa,--32 -g -Iuserspace
USER_BINFLAGS =
STRIP_LIBS = 1
# We always build with our targetted cross-compiler
CC = $(USER_TARGET)-gcc
NM = $(USER_TARGET)-nm
CXX= $(USER_TARGET)-g++
AR = $(USER_TARGET)-ar
AS = $(USER_TARGET)-as
STRIP = $(USER_TARGET)-strip
# Userspace binaries and libraries
USER_CFILES = $(filter-out userspace/core/init.c,$(shell find userspace -not -wholename '*/lib/*' -not -wholename '*.static.*' -name '*.c'))
USER_CXXFILES = $(shell find userspace -not -wholename '*/lib/*' -name '*.c++')
USER_LIBFILES = $(shell find userspace -wholename '*/lib/*' -name '*.c')
LIBC=hdd/usr/lib/libc.so
# Userspace output files (so we can define metatargets)
NONTEST_C = $(foreach f,$(USER_CFILES),$(if $(findstring /tests/,$f),,$f))
NONTEST_CXX = $(foreach f,$(USER_CXXFILES),$(if $(findstring /tests/,$f),,$f))
NONTEST = $(foreach file,$(NONTEST_C),$(patsubst %.c,hdd/bin/%,$(notdir ${file})))
NONTEST += $(foreach file,$(NONTEST_CXX),$(patsubst %.c++,hdd/bin/%,$(notdir ${file})))
NONTEST += $(foreach file,$(USER_CSTATICFILES),$(patsubst %.static.c,hdd/bin/%,$(notdir ${file})))
NONTEST += $(foreach file,$(USER_LIBFILES),$(patsubst %.c,hdd/usr/lib/libtoaru-%.so,$(notdir ${file})))
NONTEST += $(LIBC) hdd/bin/init hdd/lib/ld.so
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_CSTATICFILES),$(patsubst %.static.c,hdd/bin/%,$(notdir ${file})))
USERSPACE += $(foreach file,$(USER_LIBFILES),$(patsubst %.c,hdd/usr/lib/libtoaru-%.so,$(notdir ${file})))
USERSPACE += $(LIBC) hdd/bin/init hdd/lib/ld.so
CORE_LIBS = $(patsubst %.c,%.o,$(wildcard userspace/lib/*.c))
# Init must be built static at the moment.
hdd/bin/init: userspace/core/init.c
@${BEG} "CC" "$< (static)"
@${CC} -o $@ -static -Wl,-static $(USER_CFLAGS) $(USER_BINFLAGS) $< ${ERRORS}
@${END} "CC" "$< (static)"
# Libraries
define user-c-rule
$1: $2 $(shell util/auto-dep.py --deps $2) $(LIBC)
@${BEG} "CCSO" "$$<"
@${CC} -o $$@ $(USER_CFLAGS) -shared -fPIC $$(shell util/auto-dep.py --cflags $$<) $$< $$(shell util/auto-dep.py --libs $$<) -lc ${ERRORS}
2016-12-15 14:53:34 +03:00
@if [ "x$(STRIP_LIBS)" = "x1" ]; then ${STRIP} $$@; fi
@${END} "CCSO" "$$<"
endef
$(foreach file,$(USER_LIBFILES),$(eval $(call user-c-rule,$(patsubst %.c,hdd/usr/lib/libtoaru-%.so,$(notdir ${file})),${file})))
# Binaries from C sources
define user-c-rule
$1: $2 $(shell util/auto-dep.py --deps $2) $(LIBC)
@${BEG} "CC" "$$<"
@${CC} -o $$@ $(USER_CFLAGS) $(USER_BINFLAGS) -fPIE $$(shell util/auto-dep.py --cflags $$<) $$< $$(shell util/auto-dep.py --libs $$<) -lc ${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) $(LIBC)
@${BEG} "C++" "$$<"
@${CXX} -o $$@ $(USER_CXXFLAGS) $(USER_BINFLAGS) -static -Wl,-static $$(shell util/auto-dep.py --cflags $$<) $$< $$(shell util/auto-dep.py --libs $$<) -lc ${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" "$@"
2016-11-21 13:29:52 +03:00
hdd/usr/lib/libnetwork.a: userspace/lib/network.o
@${BEG} "AR" "$@"
@${AR} rcs $@ ${CORE_LIBS}
@${END} "AR" "$@"
2016-12-15 13:49:10 +03:00
hdd/usr/lib:
2016-12-15 13:59:45 +03:00
@mkdir -p hdd/usr/lib
2016-12-15 13:49:10 +03:00
# Bad implementations of shared libraries
2016-12-15 13:49:10 +03:00
hdd/usr/lib/libc.so: ${TOOLCHAIN}/lib/libc.a | hdd/usr/lib
@${BEG} "SO" "$@"
@cp ${TOARU_SYSROOT}/usr/lib/libc.a libc.a
@# init and fini don't belong in our shared object
2016-12-25 15:47:01 +03:00
@ar d libc.a lib_a-init.o
@ar d libc.a lib_a-fini.o
2016-12-15 13:49:10 +03:00
@# Remove references to newlib's reentrant malloc
2016-12-25 15:47:01 +03:00
@ar d libc.a lib_a-callocr.o
@ar d libc.a lib_a-cfreer.o
@ar d libc.a lib_a-freer.o
@ar d libc.a lib_a-malignr.o
@ar d libc.a lib_a-mallinfor.o
@ar d libc.a lib_a-mallocr.o
@ar d libc.a lib_a-malloptr.o
@ar d libc.a lib_a-msizer.o
@ar d libc.a lib_a-mallstatsr.o
@ar d libc.a lib_a-pvallocr.o
@ar d libc.a lib_a-vallocr.o
@ar d libc.a lib_a-reallocr.o
@ar d libc.a lib_a-realloc.o
@ar d libc.a lib_a-calloc.o
@ar d libc.a lib_a-reallo.o
@${CC} -shared -o libc.so -Wl,--whole-archive libc.a -Wl,--no-whole-archive ${ERRORS}
@mv libc.so hdd/usr/lib/libc.so
2016-12-15 14:53:34 +03:00
@if [ "x$(STRIP_LIBS)" = "x1" ]; then ${STRIP} $@; fi
2016-12-15 13:49:10 +03:00
@rm libc.a
@${END} "SO" "$@"
hdd/lib:
@mkdir -p hdd/lib
hdd/lib/ld.so: linker/linker.c | hdd/lib
@${BEG} "CC" "$<"
@${CC} -static -Wl,-static -std=c99 -g -U__STRICT_ANSI__ -o $@ -Os -T linker/link.ld $< ${ERRORS}
@${END} "CC" "$<"
define basic-so-wrapper
hdd/usr/lib/lib$(1).so: ${TOOLCHAIN}/lib/lib$(1).a
@${BEG} "SO" "$$@"
2016-12-25 15:47:01 +03:00
@${CC} -shared -Wl,-soname,lib$(1).so -o lib$(1).so -Lhdd/usr/lib -Wl,--whole-archive ${TOOLCHAIN}/lib/lib$(1).a -Wl,--no-whole-archive $2 -lgcc
@mv lib$(1).so hdd/usr/lib/lib$(1).so
2016-12-15 14:53:34 +03:00
@if [ "x$(STRIP_LIBS)" = "x1" ]; then ${STRIP} $$@; fi
@${END} "SO" "$$@"
endef
2016-12-25 15:47:01 +03:00
$(eval $(call basic-so-wrapper,gcc,))
$(eval $(call basic-so-wrapper,m,))
$(eval $(call basic-so-wrapper,z,))
$(eval $(call basic-so-wrapper,ncurses,))
$(eval $(call basic-so-wrapper,panel,-lncurses))
$(eval $(call basic-so-wrapper,png15,-lz))
$(eval $(call basic-so-wrapper,pixman-1,-lm))
$(eval $(call basic-so-wrapper,cairo,-lpixman-1 -lpng15 -lfreetype))
$(eval $(call basic-so-wrapper,freetype,-lz))
####################
# Hard Disk Images #
####################
2016-12-29 08:43:01 +03:00
# Hard disk image generation
GENEXT = genext2fs
DISK_SIZE = `util/disk_size.sh`
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!"
2016-12-29 08:43:01 +03:00
#############
# CD Images #
#############
2015-06-19 07:33:07 +03:00
cdrom: toaruos.iso
2016-12-15 14:53:34 +03:00
hdd/usr/share/terminfo/t/toaru: util/toaru.tic
@mkdir -p hdd/usr/share/terminfo/t
@cp $< $@
FORCE:
_cdrom: FORCE | ${NONTEST} toaruos-kernel
2016-12-15 14:53:34 +03:00
@-rm -rf _cdrom
@cp -r util/cdrom _cdrom
_cdrom/mod: modules _cdrom
@mv hdd/mod $@
_cdrom/kernel: toaruos-kernel _cdrom
@cp $< $@
BLACKLIST = hdd/usr/share/wallpapers/grandcanyon.png
BLACKLIST += hdd/usr/share/wallpapers/paris.png
BLACKLIST += hdd/usr/share/wallpapers/southbay.png
BLACKLIST += hdd/usr/share/wallpapers/yokohama.png
BLACKLIST += hdd/usr/share/wallpapers/yosemite.png
_cdrom/ramdisk.img: ${NONTEST} hdd/usr/share/wallpapers util/devtable hdd/usr/share/terminfo/t/toaru _cdrom _cdrom/mod
@${BEG} "ext" "Generating a ramdisk image..."
2016-12-15 14:53:34 +03:00
@rm -f $(filter-out ${NONTEST},${USERSPACE})
@rm -f ${BLACKLIST}
@${STRIP} ${NONTEST}
2016-12-15 14:53:34 +03:00
@${GENEXT} -B 4096 -d hdd -D util/devtable -U -b 16384 -N 2048 $@
@${END} "ext" "Generated ramdisk image"
2016-12-15 14:53:34 +03:00
_cdrom/ramdisk.img.gz: _cdrom/ramdisk.img
@gzip $<
2016-12-29 10:43:46 +03:00
define fixup-cd
@git checkout hdd/usr/share/wallpapers
@mv _cdrom/mod hdd/mod
@rm -r _cdrom
endef
toaruos.iso: _cdrom/ramdisk.img.gz _cdrom/kernel
2016-12-15 14:53:34 +03:00
@${BEG} "ISO" "Building a CD image"
@if grep precise /etc/lsb-release; then grub-mkrescue -o $@ _cdrom; else grub-mkrescue -d /usr/lib/grub/i386-pc --compress=xz -o $@ _cdrom -- -quiet 2> /dev/null; fi
@${END} "ISO" "Building a CD image"
2016-12-29 10:43:46 +03:00
$(call fixup-cd)
2016-12-15 14:53:34 +03:00
@${INFO} "--" "CD generated"
2016-09-02 13:59:07 +03:00
2016-12-29 10:43:46 +03:00
netboot.img.gz: _cdrom/ramdisk.img.gz
cp _cdrom/ramdisk.img.gz netboot.img.gz
$(call fixup-cd)
fix-cd:
$(call fixup-cd)
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:
@${BEGRM} "RM" "Cleaning kernel objects..."
@-rm -f kernel/*.o
2014-03-17 00:30:25 +04:00
@-rm -f kernel/*/*.o
@-rm -f ${KERNEL_OBJS}
@${ENDRM} "RM" "Cleaned kernel objects"
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