Update Makefile

This commit is contained in:
Abdelrahman Said 2025-04-13 22:21:55 +01:00
parent 0e5942af34
commit 0942643b4e

View File

@ -24,7 +24,7 @@ ifeq ($(CC),gcc)
export ASAN_OPTIONS=verify_asan_link_order=0 export ASAN_OPTIONS=verify_asan_link_order=0
endif 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 all: clean builddir codegen run-test full
@ -50,8 +50,14 @@ build-lib:
full: LIB_SRC = src/wapp.c full: LIB_SRC = src/wapp.c
full: build-lib full: build-lib
prng: LIB_SRC = src/prng/wapp_prng.c
prng: build-lib
testing: LIB_SRC = src/testing/wapp_testing.c testing: LIB_SRC = src/testing/wapp_testing.c
testing: build-lib testing: build-lib
uuid: LIB_SRC = src/uuid/wapp_uuid.c
uuid: build-lib
core: LIB_SRC = src/core/wapp_core.c core: LIB_SRC = src/core/wapp_core.c
core: build-lib core: build-lib