Unverified Commit 56f8495d authored by Willem's avatar Willem Committed by GitHub
Browse files

Merge pull request #83 from yossigo/fix/make-clean

Make clean did not remove object files.
parents 9b983183 546df393
......@@ -87,7 +87,7 @@ do_infer:
infer -- make
clean:
@rm -f $(TEST_DIR)/main_test.c *.o $(GCOV_OUTPUT); \
@rm -f $(TEST_DIR)/main_test.c src/*.o $(GCOV_OUTPUT); \
if [ -f "libraft.$(SHAREDEXT)" ]; then rm libraft.$(SHAREDEXT); fi;\
if [ -f libraft.a ]; then rm libraft.a; fi;\
if [ -f tests_main ]; then rm tests_main; fi;
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment