Skip to content

Commit 089194d

Browse files
authored
Merge pull request #18 from chadrik/patch-1
Allow default values in Makefile to be overridden
2 parents 7631f72 + 851abee commit 089194d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
LIBTOOL = libtool
2-
LIBDIR = /usr/lib
3-
CXX = g++
4-
CXXFLAGS = -g -O3 -Wall -Wextra -Wshadow -Wconversion -Wcast-qual -Wformat=2
1+
LIBTOOL ?= libtool
2+
LIBDIR ?= /usr/lib
3+
CXX ?= g++
4+
CXXFLAGS ?= -g -O3 -Wall -Wextra -Wshadow -Wconversion -Wcast-qual -Wformat=2
55

66
all: libpystring.la
77

0 commit comments

Comments
 (0)