2015-08-14 09:58:16 +00:00
|
|
|
#Config
|
|
|
|
Artifact=kernel
|
|
|
|
TempDir=obj
|
|
|
|
SourceDir=asm src
|
2015-10-07 01:43:23 +00:00
|
|
|
AdditionalObjects=obj/main.o obj/firstcode.o
|
2015-10-07 11:16:15 +00:00
|
|
|
ExternalObjects=/home/felix/projects/Electronics/build-Electronics-Desktop-Debug/Conductance/|*.o
|
2015-08-14 09:58:16 +00:00
|
|
|
|
2015-08-14 11:27:04 +00:00
|
|
|
LexUseCpp
|
|
|
|
YaccUseCpp
|
|
|
|
|
2015-08-14 09:58:16 +00:00
|
|
|
# Tools
|
|
|
|
AS=gcc
|
|
|
|
CC=gcc
|
|
|
|
CXX=g++
|
|
|
|
LD=g++
|
|
|
|
LEX=flex
|
|
|
|
YACC=bison
|
2015-10-06 15:49:36 +00:00
|
|
|
#TEMPLE=mono /home/felix/projects/temple/bin/Debug/temple.exe
|
2015-08-14 09:58:16 +00:00
|
|
|
|
|
|
|
# Flags
|
2015-10-07 11:16:15 +00:00
|
|
|
FLAGS=-m32 -DCIRCUIT_OS -Dnullptr=0 -D__cdecl="__attribute__((cdecl))" -mno-sse -mno-sse2 -mno-mmx -I/home/felix/projects/Electronics/Electronics/Conductance -I/home/felix/projects/Electronics/Electronics/Tools
|
2015-08-14 21:53:51 +00:00
|
|
|
ASFLAGS=-masm=intel
|
2015-08-14 09:58:16 +00:00
|
|
|
CCFLAGS=-g -std=c11 -Dnullptr=0 -Wall -g -fno-stack-protector -ffreestanding -Iinclude
|
|
|
|
CXXFLAGS=-g -std=c++11 -Wall -g -fno-stack-protector -fno-use-cxa-atexit -nostdlib -fno-builtin -fno-rtti -fno-exceptions -fno-leading-underscore -Wall -Wextra -ffreestanding -Wno-unused-function -Iinclude
|
2015-10-07 01:43:23 +00:00
|
|
|
LDFLAGS=-g -m32 -nostdlib -fno-builtin -Tkernel.ld
|
2015-08-14 09:58:16 +00:00
|
|
|
|
2015-08-14 11:34:14 +00:00
|
|
|
--
|
2015-10-07 01:43:23 +00:00
|
|
|
|
2015-08-14 13:38:01 +00:00
|
|
|
obj/main.o: scripts/main.ts
|
|
|
|
objcopy -B i386 -I binary -O elf32-i386 \
|
|
|
|
scripts/main.ts obj/main.o
|
|
|
|
objcopy \
|
|
|
|
--redefine-sym _binary_scripts_main_ts_start=mainscript_start \
|
|
|
|
--redefine-sym _binary_scripts_main_ts_end=mainscript_end \
|
|
|
|
--redefine-sym _binary_scripts_main_ts_size=mainscript_size \
|
|
|
|
obj/main.o
|
|
|
|
|
2015-10-07 01:43:23 +00:00
|
|
|
obj/firstcode.o: /home/felix/projects/Electronics/first-run.ca
|
|
|
|
cp /home/felix/projects/Electronics/first-run.ca obj/firstrun.ca
|
|
|
|
objcopy -B i386 -I binary -O elf32-i386 \
|
|
|
|
obj/firstrun.ca obj/firstcode.o
|
|
|
|
objcopy \
|
|
|
|
--redefine-sym _binary_obj_firstrun_ca_start=firstrun_start \
|
|
|
|
--redefine-sym _binary_obj_firstrun_ca_end=firstrun_end \
|
|
|
|
--redefine-sym _binary_obj_firstrun_ca_size=firstrun_size \
|
|
|
|
obj/firstcode.o
|
2015-08-14 13:38:01 +00:00
|
|
|
|
2015-08-14 11:34:14 +00:00
|
|
|
.PHONY: run
|
|
|
|
run:
|
2015-08-17 13:38:19 +00:00
|
|
|
qemu-system-i386 -serial stdio -kernel kernel
|
2015-08-17 18:04:14 +00:00
|
|
|
|
|
|
|
.PHONY: debug
|
|
|
|
debug:
|
|
|
|
qemu-system-i386 -s -S -serial stdio -kernel kernel
|