minor fixes

This commit is contained in:
Naim A 2015-11-28 15:37:38 -08:00
parent 1702177307
commit bf94f4e0be
2 changed files with 2 additions and 3 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*.o

View file

@ -34,12 +34,10 @@ all: $(target)
$(target): $(objects) $(target): $(objects)
@echo Linking... @echo Linking...
$(CXX) -O3 -o $(target) $(objects) $(LDFLAGS) -lsqlite3 $(CXX) -O3 -o $(target) $(objects) $(LDFLAGS) -lsqlite3 -lpthread
@echo Done. @echo Done.
clean: clean:
@echo Cleaning Up... @echo Cleaning Up...
$(RM) $(objects) $(target) $(RM) $(objects) $(target)
@echo Done. @echo Done.
install: $(target)
@echo Installing $(target) to '$(exec_prefix)/bin'...