From 3d00cb604a650588abe4b91ebd0f34c4995646d7 Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Tue, 29 Jan 2019 22:19:00 +0100 Subject: [PATCH] Rename testit.c -> main.c, not a test Signed-off-by: Joachim Wiberg --- Makefile | 2 +- testit.c => main.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename testit.c => main.c (100%) diff --git a/Makefile b/Makefile index 5969a68..6e35bdb 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ incdir ?= $(prefix)/include all: $(TARGET) -$(EXEC): testit.o $(STATICLIB) +$(EXEC): main.o $(STATICLIB) @printf " LINK $(subst $(ROOTDIR)/,,$(shell pwd)/)$@\n" @$(CC) $(CFLAGS) $(LDFLAGS) -Wl,-Map,$@.map -o $@ $^ $(LDLIBS$(LDLIBS-$(@))) diff --git a/testit.c b/main.c similarity index 100% rename from testit.c rename to main.c