diff options
| author | Andreas Kapp Lindquist <alind24@student.sdu.dk> | 2025-09-30 15:49:41 +0200 |
|---|---|---|
| committer | mithe24 <mithe24@student.sdu.dk> | 2025-10-29 13:49:57 +0100 |
| commit | b9442248191b20b23c195542faee39f5af21c682 (patch) | |
| tree | 6245da8d26b3f9ec9517837d3410cc51cbdb1cbf /makefile | |
| parent | c5b3d2258eee3c71edc440c11c3aa384d38e2803 (diff) | |
| download | sorter-b9442248191b20b23c195542faee39f5af21c682.tar.gz sorter-b9442248191b20b23c195542faee39f5af21c682.zip | |
feat(makefile): Basic makefile
Diffstat (limited to '')
| -rwxr-xr-x | makefile | 10 |
1 files changed, 10 insertions, 0 deletions
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 |