commit 9141fda72023819abc0e5fb94a63156b13e50cca
Author: David Sorber <david.sorber@gmail.com>
Date:   Tue Jan 24 11:28:12 2017 -0500

    Another minor tweak to the makefile to add the useful "-f" flag to rm so that it doesn't puke if the file(s) you're attempting to remove don't exist.

diff --git a/software/sqlite_poc/Makefile b/software/sqlite_poc/Makefile
index d671107..ce32418 100644
--- a/software/sqlite_poc/Makefile
+++ b/software/sqlite_poc/Makefile
@@ -11,5 +11,5 @@ main: $(OBJECTS)
 	g++ $(CXXFLAGS) -c $<
 
 clean:
-	rm *.o
-	rm poc_test
+	rm -f *.o
+	rm -f poc_test
