exit when the wrong args are passed

This commit is contained in:
2023-10-14 23:35:03 -07:00
parent c2e83613f2
commit 659cd0252a
2 changed files with 1 additions and 5 deletions

View File

@@ -34,11 +34,6 @@ tags: $(SOURCES)
$(TARGET): $(OBJS)
$(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $(OBJS)
.PHONY: cclean
cclean:
rm -r build cmake-build-*
print-%: ; @echo '$(subst ','\'',$*=$($*))'
%.o:%.cc