From 0942643b4ebe87bb9db9c2c48883540a59815bab Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 13 Apr 2025 22:21:55 +0100 Subject: [PATCH] Update Makefile --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6e69657..93c1ea1 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ ifeq ($(CC),gcc) export ASAN_OPTIONS=verify_asan_link_order=0 endif -.PHONY: all clean builddir codegen build-test run-test build-lib full testing core +.PHONY: all clean builddir codegen build-test run-test build-lib full prng testing uuid core all: clean builddir codegen run-test full @@ -50,8 +50,14 @@ build-lib: full: LIB_SRC = src/wapp.c full: build-lib +prng: LIB_SRC = src/prng/wapp_prng.c +prng: build-lib + testing: LIB_SRC = src/testing/wapp_testing.c testing: build-lib +uuid: LIB_SRC = src/uuid/wapp_uuid.c +uuid: build-lib + core: LIB_SRC = src/core/wapp_core.c core: build-lib