Skip to content

Commit

Permalink
Merge pull request #18 from chadrik/patch-1
Browse files Browse the repository at this point in the history
Allow default values in Makefile to be overridden
  • Loading branch information
grdanny authored Jul 24, 2022
2 parents 7631f72 + 851abee commit 089194d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
LIBTOOL = libtool
LIBDIR = /usr/lib
CXX = g++
CXXFLAGS = -g -O3 -Wall -Wextra -Wshadow -Wconversion -Wcast-qual -Wformat=2
LIBTOOL ?= libtool
LIBDIR ?= /usr/lib
CXX ?= g++
CXXFLAGS ?= -g -O3 -Wall -Wextra -Wshadow -Wconversion -Wcast-qual -Wformat=2

all: libpystring.la

Expand Down

0 comments on commit 089194d

Please sign in to comment.