remove queue data structure and begin to implement basic chroot script for testing

This commit is contained in:
2025-03-18 14:59:44 -04:00
parent 923df644a0
commit 1a32ab4009
5 changed files with 69 additions and 299 deletions

View File

@@ -35,7 +35,7 @@ lib: $(SDIR)/libglacier.c
$(CC) $(SDIR)/libglacier.c -c $(LIBFLAGS) -o $(BDIR)/lib/libglacier.o
$(AR) -rc $(BDIR)/lib/libglacier.a build/lib/libglacier.o
check: $(BDIR) $(TDIR)/unit-tests.c
check: lib $(BDIR) $(TDIR)/unit-tests.c
$(CC) tests/unit-tests.c -o tests/test-suite -lcunit -Wall -Wextra build/lib/libglacier.a $(LIBFLAGS)
tests/test-suite
@@ -63,7 +63,7 @@ install: install_lib install_head
@echo "[INFO]"
clean:
rm -rf $(BDIR)
rm -rf $(BDIR) ./chroot
distclean:
rm -rf $(BDIR) $(TDIR)/test-suite
rm -rf $(BDIR) $(TDIR)/test-suite ./chroot