Revision 9141fda7
Added by David Sorber over 9 years ago
| software/sqlite_poc/Makefile | ||
|---|---|---|
|
g++ $(CXXFLAGS) -c $<
|
||
|
|
||
|
clean:
|
||
|
rm *.o
|
||
|
rm poc_test
|
||
|
rm -f *.o
|
||
|
rm -f poc_test
|
||
| software/sqlite_poc/Makefile | ||
|---|---|---|
|
g++ $(CXXFLAGS) -c $<
|
||
|
|
||
|
clean:
|
||
|
rm *.o
|
||
|
rm poc_test
|
||
|
rm -f *.o
|
||
|
rm -f poc_test
|
||
Also available in: Unified diff
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.