diff options
| author | Andreas Kapp Lindquist <alind24@student.sdu.dk> | 2025-10-03 13:21:57 +0200 |
|---|---|---|
| committer | mithe24 <mithe24@student.sdu.dk> | 2025-10-29 13:49:57 +0100 |
| commit | 8b8f617d5c5daa621cd94770275da2b46f618f3f (patch) | |
| tree | 8b5d1ef0427e27e2cf81426c049f88dd305df7b1 /makefile | |
| parent | 41c7279e634c1a9e9087d237ba316d13ecae2680 (diff) | |
| download | sorter-8b8f617d5c5daa621cd94770275da2b46f618f3f.tar.gz sorter-8b8f617d5c5daa621cd94770275da2b46f618f3f.zip | |
refactor(Makefile): Attempt at making Makefile
Diffstat (limited to '')
| -rwxr-xr-x | makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/makefile b/makefile deleted file mode 100755 index 7268cab..0000000 --- a/makefile +++ /dev/null @@ -1,10 +0,0 @@ -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 |