diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5761abc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.o diff --git a/Makefile b/Makefile index 70a3f95..0de727a 100644 --- a/Makefile +++ b/Makefile @@ -34,12 +34,10 @@ all: $(target) $(target): $(objects) @echo Linking... - $(CXX) -O3 -o $(target) $(objects) $(LDFLAGS) -lsqlite3 + $(CXX) -O3 -o $(target) $(objects) $(LDFLAGS) -lsqlite3 -lpthread @echo Done. clean: @echo Cleaning Up... $(RM) $(objects) $(target) @echo Done. -install: $(target) - @echo Installing $(target) to '$(exec_prefix)/bin'...