From 85447646123e21c82b3e224065a58619a8c3804b Mon Sep 17 00:00:00 2001 From: "(Tim) Efthimis Kritikos" Date: Thu, 7 Dec 2023 19:21:31 +0000 Subject: [PATCH] Build system: Minor improvement and addition of license notice to one of the files --- boot_code/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/boot_code/Makefile b/boot_code/Makefile index 2756dda..95fa50d 100644 --- a/boot_code/Makefile +++ b/boot_code/Makefile @@ -1,3 +1,22 @@ +# This file is part of the 9086 project. +# +# Copyright (c) 2023 Efthymios Kritikos +# +# This program 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 +# (at your option) any later version. +# +# This program 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 this program. If not, see . + + +PRINT_PATH_PREFIX=./ SOURCE_FULL=brainfuck_interpreted.asm brainfuck_compiled.asm brainfuck_mandelbrot.asm pipeline_ideal.asm fibonacci.asm gnome_sort.asm cache_fill_and_empty.asm colored_led.asm SOURCE_SHORT=bios.asm BINARIES=$(subst .asm,.txt,${SOURCE_FULL}) $(subst .asm,.stxt,${SOURCE_SHORT})