diff --git a/Makefile b/Makefile index 774360f..ba2fefa 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,7 @@ SRCDIR = ./src INCDIR = ./include OBJDIR = ./obj BINDIR = ./bin +TESTDIR = ./test_files/corrupted SRC = $(wildcard $(SRCDIR)/*.c) OBJ = $(SRC:$(SRCDIR)/%.c=$(OBJDIR)/%.o) @@ -87,4 +88,7 @@ clean: distclean: $(call rmdirs,$(DIRECTORIES_TO_REMOVE)) -.PHONY: all clean distclean +testclean: + $(call rmdirs,$(TESTDIR)) + +.PHONY: all clean distclean testclean