os-k/Makefile.in

113 lines
4.2 KiB
Makefile
Raw Normal View History

2019-02-06 14:07:38 +01:00
// -*- Mode: Makefile -*-
2019-02-06 15:41:24 +01:00
//=--------------------------------------------------------------------------=//
2019-01-02 17:19:13 +01:00
// GNU GPL OS/K //
// //
// Desc: Project Makefile //
2019-02-06 15:41:24 +01:00
// //
// //
// Copyright © 2018-2019 The OS/K Team //
// //
// This file is part of OS/K. //
// //
// OS/K is free software: you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation, either version 3 of the License, or //
// any later version. //
// //
// OS/K is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
//=--------------------------------------------------------------------------=//
2019-01-02 16:27:12 +01:00
// The madman's Makefile
2019-01-14 14:31:49 +01:00
#include "build/preproc.h"
2019-01-02 16:27:12 +01:00
CCNAME="/opt/cross-cc/bin/x86_64-elf-gcc"
CC2NAME=gcc
COPTIM=-O2
2019-02-06 14:07:38 +01:00
CWARNS=-Wall -Wextra // -Wshadow -Wpedantic
CINCLUDES=-Ikaleid/include
2019-01-02 16:27:12 +01:00
2019-02-06 14:07:38 +01:00
CFLAGS1=-nostdlib -ffreestanding -mcmodel=large // -std=gnu11
CFLAGS2=_ASMTYPE -mno-red-zone -mno-mmx -mno-sse -mno-sse2
CFLAGS=$(CFLAGS1) $(CFLAGS2)
2019-01-02 16:27:12 +01:00
2019-01-14 14:31:49 +01:00
CC=$(CCNAME) $(COPTIM) $(CWARNS) $(CFLAGS) $(CINCLUDES)
2019-01-02 16:27:12 +01:00
2019-02-06 14:07:38 +01:00
BINDIR=build/bin
OBJDIR=build/obj
2019-01-02 16:27:12 +01:00
BOOTDIR=boot
COMMDIR=kaleid/crtlib
2019-01-02 16:27:12 +01:00
KERNDIR=kaleid/kernel
SYSTDIR=kaleid/system
2019-02-06 14:07:38 +01:00
LINXDIR=kaleid/test
2019-01-02 16:27:12 +01:00
//----------------------------------------------------------------------------#
// TESTING MAKEFILE
pseudo_kern:
$(ASM) $(BOOTFLAGS) $(BOOTDIR)/pseudo_kernel.s -o $(OBJDIR)/boot/pkernel.bin
testing: bootloader pseudo_kern
cat $(BINDIR)/bootloader.bin $(OBJDIR)/boot/pkernel.bin > $(BINDIR)/boot.bin
//----------------------------------------------------------------------------#
// COMMON MAKEFILE
COBJDIR=$(OBJDIR)/$(COMMDIR)
LOBJDIR=$(OBJDIR)/$(LINXDIR)
2019-01-21 14:58:04 +01:00
COMMOBJS=COBJ6(string, status, rand, memory, arith, strtol) COBJ4(itoa, ltoa, utoa, ultoa) COBJ4(atoi, atol, atou, atoul) COBJ2(../extras/prog, ../extras/argv)
2019-01-02 16:27:12 +01:00
TCC=$(CC2NAME) $(COPTIM) $(CWARNS) $(CINCLUDES)
2019-02-06 14:07:38 +01:00
KCC=$(CC) -D_KALEID_KERNEL
2019-01-02 16:27:12 +01:00
comm-convert:
2019-01-14 14:31:49 +01:00
COMPILE_CONVRT1(itoa) -D_NEED_ITOA
COMPILE_CONVRT1(ltoa) -D_NEED_LTOA
COMPILE_CONVRT1(utoa) -D_NEED_UTOA
COMPILE_CONVRT1(ultoa) -D_NEED_ULTOA
COMPILE_CONVRT2(atoi) -D_NEED_ATOI
COMPILE_CONVRT2(atol) -D_NEED_ATOL
COMPILE_CONVRT2(atou) -D_NEED_ATOU
COMPILE_CONVRT2(atoul) -D_NEED_ATOUL
2019-01-02 16:27:12 +01:00
common: comm-convert
COMPILE_COMMON(rand)
COMPILE_COMMON(arith)
COMPILE_COMMON(string)
COMPILE_COMMON(status)
COMPILE_COMMON(memory)
2019-01-14 14:31:49 +01:00
COMPILE_COMMON(strtol)
2019-01-21 14:58:04 +01:00
COMPILE_COMMON(../extras/prog)
COMPILE_COMMON(../extras/argv)
2019-01-02 16:27:12 +01:00
tests: common
$(TCC) -c $(LINXDIR)/test-common.c -o $(LOBJDIR)/test-common.o
2019-02-06 14:07:38 +01:00
$(TCC) $(COMMOBJS) $(LOBJDIR)/test-common.o -o $(BINDIR)/comm-test
2019-01-02 16:27:12 +01:00
//----------------------------------------------------------------------------#
// KERNEL MAKEFILE
KOBJDIR=$(OBJDIR)/$(KERNDIR)
2019-02-06 14:07:38 +01:00
KERNOBJS=KOBJ6(init/init, init/table, ke/panic, io/term, io/cursor, io/vga)
2019-01-02 16:27:12 +01:00
kernel: common
2019-01-14 14:31:49 +01:00
COMPILE_KERNEL(init/init)
COMPILE_KERNEL(init/table)
2019-01-02 16:27:12 +01:00
COMPILE_KERNEL(ke/panic)
2019-02-06 14:07:38 +01:00
COMPILE_KERNEL(io/cursor)
COMPILE_KERNEL(io/term)
COMPILE_KERNEL(io/vga)
2019-01-02 16:27:12 +01:00
LINK_KERNEL(kaleid-kernel.elf)
//----------------------------------------------------------------------------#