Remove codegen and implement dbl_list as generic container

This commit is contained in:
Abdelrahman Said
2025-04-16 00:07:11 +01:00
parent 0942643b4e
commit 6fb078a868
35 changed files with 552 additions and 1199 deletions

View File

@@ -24,9 +24,9 @@ ifeq ($(CC),gcc)
export ASAN_OPTIONS=verify_asan_link_order=0
endif
.PHONY: all clean builddir codegen build-test run-test build-lib full prng testing uuid core
.PHONY: all clean builddir build-test run-test build-lib full prng testing uuid core containers
all: clean builddir codegen run-test full
all: clean builddir run-test full
clean:
@rm -rf $(BUILD_DIR)
@@ -34,9 +34,6 @@ clean:
builddir:
@mkdir -p $(BUILD_DIR)
codegen:
python3 -m codegen
build-test:
$(CC) $(CFLAGS) $(TEST_INCLUDE) $(TEST_SRC) -o $(TEST_OUT)
@@ -61,3 +58,6 @@ uuid: build-lib
core: LIB_SRC = src/core/wapp_core.c
core: build-lib
containers: LIB_SRC = src/core/wapp_containers.c
containers: build-lib