From d654b4acde2280b79bd49a004443a73e0e6da2b3 Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Fri, 29 Dec 2023 17:22:28 +0100 Subject: [PATCH] add list_sort --- Makefile | 4 ---- {todo => include}/list_sort.h | 0 {todo => src}/list_sort.c | 0 3 files changed, 4 deletions(-) rename {todo => include}/list_sort.h (100%) rename {todo => src}/list_sort.c (100%) 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