Merge pull request #36 from porridge/clean

Make the clean target actually work
This commit is contained in:
Murilo Pereira 2019-05-15 23:06:08 +02:00 committed by GitHub
commit 0268d6df09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ test: $(SRC_OBJECTS) $(TESTS_OBJECTS)
@./$(TESTS_EXECUTABLE)
clean:
@rm -rf {$(SRC_DIR),$(TESTS_DIR)}/*.o $(EXECUTABLE) $(TESTS_EXECUTABLE)
@rm -rf $(SRC_DIR)/*.o $(TESTS_DIR)/*.o $(EXECUTABLE) $(TESTS_EXECUTABLE)
install:
@install -d $(DESTDIR)$(PREFIX)/bin