branch: elpa/sqlite3
commit 657d5ced2d01b632ded3d1c4b305c343100c69e3
Author: Kevin Rineer <[email protected]>
Commit: Kevin Rineer <[email protected]>
Test
---
Makefile | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/Makefile b/Makefile
index 0c09fa8944f..fc4f9a330c2 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,12 @@ ifeq ($(HOMEBREW), 1)
LIB=-L/usr/local/opt/sqlite3/lib -lsqlite3
endif
+ifeq ($(LINUXBREW), 1)
+ PREFIX=/home/linuxbrew/.linuxbrew/opt
+ INC=-I$(PREFIX)/include
+ LIB=-L$(PREFIX)/lib -lsqlite3
+endif
+
CFLAGS ?= -g3 -Wall -std=c99 $(INC)
EMACS ?= /Applications/Emacs.app/Contents/MacOS/Emacs-x86_64-10_14