diff options
| author | mithe24 <mithe24@student.sdu.dk> | 2025-10-11 18:43:05 +0200 |
|---|---|---|
| committer | mithe24 <mithe24@student.sdu.dk> | 2025-10-29 13:49:57 +0100 |
| commit | f8c900c3b23c444db9dda104f20182b51026619a (patch) | |
| tree | 879039c36b2620a29279e23e7b92bab985c76e7f | |
| parent | 4d59ffc8f4a02781950780be7c277f99584c1f56 (diff) | |
| download | sorter-f8c900c3b23c444db9dda104f20182b51026619a.tar.gz sorter-f8c900c3b23c444db9dda104f20182b51026619a.zip | |
build(fix): Removed old variable, fixed wrong command
| -rw-r--r-- | src/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 21057fa..683bad0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -6,9 +6,7 @@ LDFLAGS := -g SRCS := $(shell find . -name '*.s')
OBJS := $(patsubst %.s, %.o, $(SRCS))
TARGET := sorter
-VER := $(shell git git describe --tags --abbrev=0 2> /dev/null || echo 'v0.0.0')
-
-TEST_DIR := ./test
+VER := $(shell git describe --tags --abbrev=0 2> /dev/null || echo 'v0.0.0')
all: $(TARGET)
|