Fixed mark skipping

Co-authored-by: ValterMiari <ValterMiari@users.noreply.github.com>
This commit is contained in:
Victor Olin 2023-02-20 11:45:07 +01:00
parent 3473c953b5
commit 6cd6edb594
6 changed files with 73 additions and 21 deletions

View file

@ -36,8 +36,7 @@ linker_vg:
valgrind $(VGFLAGS) tests/linker.out
extern_lib:
rm -f lib/heap.o
rm -f lib/libheap.so
rm -f lib/heap.o lib/libheap.so tests/extern_lib.out
$(CC) $(STDFLAGS) -c -fPIC -o lib/heap.o lib/heap.cpp
$(CC) $(STDFLAGS) -shared -o lib/libheap.so lib/heap.o
$(CC) $(LIB_INCL) $(LIB_SO) -v -Wall -o tests/extern_lib.out tests/extern_lib.cpp