From f5a813380b916007c033799c72a5ab0904267e0b Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Mon, 27 Jan 2025 23:28:22 +0200 Subject: [PATCH] userspace/utest: comment out build and linking commands in Makefile Signed-off-by: EnderIce2 --- Userspace/apps/test/utest/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userspace/apps/test/utest/Makefile b/Userspace/apps/test/utest/Makefile index 13dee6ab..65e9b387 100644 --- a/Userspace/apps/test/utest/Makefile +++ b/Userspace/apps/test/utest/Makefile @@ -11,14 +11,14 @@ FILENAME = $(notdir $(shell pwd)) WARNCFLAG = -Wall -Wextra build: $(FILENAME).elf - cp $(FILENAME).elf $(WORKSPACE_DIR)/out/bin/$(FILENAME) +# cp $(FILENAME).elf $(WORKSPACE_DIR)/out/bin/$(FILENAME) # Use static linking LDFLAGS += -static -fno-pic -fno-pie -Wl,-static $(FILENAME).elf: $(OBJ) $(info Linking $@) - $(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -o $@ +# $(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -o $@ %.o: %.c $(HEADERS) $(info Compiling $<)