diff --git a/Makefile b/Makefile index 083645a..b9a0247 100644 --- a/Makefile +++ b/Makefile @@ -10,9 +10,6 @@ # SPDX-License-Identifier: GPL-3.0-or-later # -# important to know where exactly is project root dir -ROOTDIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST)))) - SHELL := /bin/bash CC := gcc LD := ld @@ -293,6 +290,5 @@ showflags: @echo LDFLAGS: $(LDFLAGS) wtf: - @printf "ROOTDIR=+%s+\n\n" "$(ROOTDIR)" @printf "OBJDIR=%s\n\n" "$(OBJDIR)" @printf "OBJ=%s\n\n" "$(OBJ)" diff --git a/todo/list_sort.h b/include/list_sort.h similarity index 100% rename from todo/list_sort.h rename to include/list_sort.h diff --git a/todo/list_sort.c b/src/list_sort.c similarity index 100% rename from todo/list_sort.c rename to src/list_sort.c