emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/sqlite3 e0943d0f90 39/62: Let users override make variable


From: ELPA Syncer
Subject: [nongnu] elpa/sqlite3 e0943d0f90 39/62: Let users override make variables if necessary
Date: Tue, 14 Mar 2023 11:01:47 -0400 (EDT)

branch: elpa/sqlite3
commit e0943d0f90e98e0d7dd138a8a9e496c0ff48f147
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    Let users override make variables if necessary
---
 Makefile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index b9d329ee3a..6dd70593f8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
-CC = gcc
-INC=-I.
-LIB=-lsqlite3
+CC  ?= gcc
+INC ?= -I.
+LIB ?= -lsqlite3
 
 ifeq ($(HOMEBREW), 1)
  INC=-I/usr/local/opt/sqlite3/include
  LIB=-L/usr/local/opt/sqlite3/lib -lsqlite3
 endif
 
-CFLAGS=-g3 -Wall -std=c99 $(INC)
+CFLAGS ?= -g3 -Wall -std=c99 $(INC)
 
-EMACS=/Applications/Emacs.app/Contents/MacOS/Emacs-x86_64-10_14
+EMACS ?= /Applications/Emacs.app/Contents/MacOS/Emacs-x86_64-10_14
 
 # Melpa package
 PKG=sqlite3-api



reply via email to

[Prev in Thread] Current Thread [Next in Thread]