From b9442248191b20b23c195542faee39f5af21c682 Mon Sep 17 00:00:00 2001 From: Andreas Kapp Lindquist Date: Tue, 30 Sep 2025 15:49:41 +0200 Subject: feat(makefile): Basic makefile --- makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 makefile diff --git a/makefile b/makefile new file mode 100755 index 0000000..7268cab --- /dev/null +++ b/makefile @@ -0,0 +1,10 @@ +as src/coordinateManager.s -o obj/coordinateManager.o -g +as src/insertion_sort.s -o obj/insertion_sort.o -g +as src/sorter.s -o obj/sorter.o -g +as src/main.s -o obj/main.o -g +as src/file_parser.s -o obj/file_parser.o -g +as snippets/allocate.s -o obj/allocate.o -g +as snippets/fileHandling.s -o obj/fileHandling.o -g +as snippets/parsing.s -o obj/parsing.o -g +as snippets/utils.s -o obj/utils.o -g +ld obj/coordinateManager.o obj/insertion_sort.o obj/sorter.o obj/main.o obj/allocate.o obj/fileHandling.o obj/parsing.o obj/utils.o obj/file_parser.o -o main -g -- cgit v1.2.3-70-g09d2