commit 471a60ed3eafb7e31b83814fc3e465785641ba6a parent 32d9d676e86931176dc419a6855f7ffedcf1ee93 Author: AbdallahWario <abdallwario96@gmail.com> Date: Tue, 11 Mar 2025 17:45:21 +0300 Update Makefile: move library flags to LDFLAGS Diffstat:
M | src/test/Makefile | | | 19 | ++++++++++--------- |
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/src/test/Makefile b/src/test/Makefile @@ -1,25 +1,25 @@ OBJS := $(patsubst %.c,%.o,$(wildcard *.c)) INCLUDES := -I.. -I../aux/include -CFLAGS += $(INCLUDES) -Wall -g3 -LIBS := `pkg-config --libs libtasn1` -L../aux/lib -llash -lm ../asn1/defs_asn1_tab.o -LDFLAGS += $(LIBS) +CFLAGS += $(INCLUDES) -Wall -g3 +LIBS := ../asn1/defs_asn1_tab.o `pkg-config --libs libtasn1` -L../aux/lib -llash +LDFLAGS := -lcheck -lsubunit -lm $(LIBS) all: build CK_FORK=no LD_LIBRARY_PATH=`realpath ../aux/lib` ./test_crypto_bin CK_FORK=no LD_LIBRARY_PATH=`realpath ../aux/lib` ./test_msg_bin CK_FORK=no LD_LIBRARY_PATH=`realpath ../aux/lib` ./test_cert_bin CK_FORK=no LD_LIBRARY_PATH=`realpath ../aux/lib` ./test_trust_bin - + test: all build: - $(CC) $(CFLAGS) $(LDFLAGS) test_crypto.c -o test_crypto_bin ../crypto/dummy.o ../mem/std.o -lcheck - $(CC) $(CFLAGS) $(LDFLAGS) test_msg.c -o test_msg_bin ../crypto/dummy.o ../mem/std.o ../store/dummy.o ../store/file.o ../io/std.o ../lq/msg.o -lcheck - $(CC) $(CFLAGS) $(LDFLAGS) test_cert.c -o test_cert_bin ../crypto/dummy.o ../mem/std.o ../store/dummy.o ../store/file.o ../io/std.o ../lq/msg.o ../lq/cert.o -lcheck - $(CC) $(CFLAGS) $(LDFLAGS) test_trust.c -o test_trust_bin ../crypto/dummy.o ../mem/std.o ../store/mem.o ../lq/trust.o -lcheck -lhashmap + $(CC) $(CFLAGS) test_crypto.c -o test_crypto_bin ../crypto/dummy.o ../mem/std.o $(LDFLAGS) + $(CC) $(CFLAGS) test_msg.c -o test_msg_bin ../crypto/dummy.o ../mem/std.o ../store/dummy.o ../store/file.o ../io/std.o ../lq/msg.o $(LDFLAGS) + $(CC) $(CFLAGS) test_cert.c -o test_cert_bin ../crypto/dummy.o ../mem/std.o ../store/dummy.o ../store/file.o ../io/std.o ../lq/msg.o ../lq/cert.o $(LDFLAGS) + $(CC) $(CFLAGS) test_trust.c -o test_trust_bin ../crypto/dummy.o ../mem/std.o ../store/mem.o ../lq/trust.o -lhashmap $(LDFLAGS) clean: rm -vf test_*_bin rm -vf *.o -.PHONY: clean +.PHONY: clean +\ No newline at end of file