aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-17 06:16:55 +0800
committerMistivia <i@mistivia.com>2025-06-17 06:16:55 +0800
commit5339475c56c5b2369d4550c6508e1a71865e0298 (patch)
treed1aa76cb5944e4c9e342d2df94725f90a2eb45e5
parente3bc104f9b3df0649d2a5b1ac9b110b3729ffdbf (diff)
change build
-rw-r--r--Makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 994c84f..9546829 100644
--- a/Makefile
+++ b/Makefile
@@ -16,11 +16,6 @@ tests=$(shell ls tests/*.c)
tests_bin=$(tests:.c=.bin)
all: libalgds.a
- -rm -rf build/
- -@mkdir -p build/include/algds/
- -@mkdir -p build/lib
- mv libalgds.a build/lib/
- cp src/*.h build/include/algds
libalgds.a: $(obj)
ar cr $@ $^
@@ -39,7 +34,6 @@ $(tests_bin):%.bin:%.c libalgds.a
clean:
-rm $(shell find tests/ -name '*.bin')
-rm $(shell find . -name '*.o' -or -name '*.a' -or -name '*.d')
- -rm -rf build
DEPS := $(shell find . -name *.d)
ifneq ($(DEPS),)