Fix codegen hidden bugs

This commit is contained in:
2025-04-19 21:11:10 +01:00
parent 9a651665ba
commit 25395553d7
3 changed files with 9 additions and 7 deletions

View File

@@ -24,9 +24,9 @@ ifeq ($(CC),gcc)
export ASAN_OPTIONS=verify_asan_link_order=0
endif
.PHONY: all clean builddir build-test run-test build-lib full prng testing uuid core containers
.PHONY: all clean builddir build-test run-test codegen build-lib full prng testing uuid core containers
all: clean builddir run-test full
all: clean builddir codegen run-test full
clean:
@rm -rf $(BUILD_DIR)
@@ -41,6 +41,9 @@ run-test: build-test
@$(TEST_OUT)
@rm $(TEST_OUT)
codegen:
python3 -m codegen
build-lib:
$(CC) $(CFLAGS) $(LIBFLAGS) $(LIB_SRC) -o $(LIB_OUT)