Revision 143a60e7
Added by David Sorber over 9 years ago
| software/sqlite_poc/Makefile | ||
|---|---|---|
|
main: $(OBJECTS)
|
||
|
g++ $(CXXFLAGS) $(OBJECTS) -lsqlite3 -o poc_test
|
||
|
|
||
|
%.o : %.c
|
||
|
%.o : %.c %.h
|
||
|
g++ $(CXXFLAGS) -c $<
|
||
|
|
||
|
clean:
|
||
After much contemplation I realized that my previous approach to solving this execute query template function problem was more wrong than right. Several days of staring at and reading about variadic templates later I figured out the correct way to accomplish my goal.