Skip to content

Commit

Permalink
Merge pull request #245 from MatthewFluet/makefile-with-gmp-dir
Browse files Browse the repository at this point in the history
Fix definitions of `WITH_GMP_{INC,LIB}_DIR` in `Makefile`-s
  • Loading branch information
MatthewFluet authored Feb 7, 2018
2 parents 4d4fb45 + 48f2d68 commit 1d08ef1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ STRIP := strip
# Specify GMP include and library paths, if not on default search paths.
WITH_GMP_DIR :=
ifneq ($(WITH_GMP_DIR),)
WITH_GMP_INC_DIR := $WITH_GMP_DIR/include
WITH_GMP_LIB_DIR := $WITH_GMP_DIR/lib
WITH_GMP_INC_DIR := $(WITH_GMP_DIR)/include
WITH_GMP_LIB_DIR := $(WITH_GMP_DIR)/lib
endif

# Specify installation prefix and staged install destination.
Expand Down
4 changes: 2 additions & 2 deletions Makefile.binary
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ CC := gcc
# Specify GMP include and library paths, if not on default search paths.
WITH_GMP_DIR :=
ifneq ($(WITH_GMP_DIR),)
WITH_GMP_INC_DIR := $WITH_GMP_DIR/include
WITH_GMP_LIB_DIR := $WITH_GMP_DIR/lib
WITH_GMP_INC_DIR := $(WITH_GMP_DIR)/include
WITH_GMP_LIB_DIR := $(WITH_GMP_DIR)/lib
endif

# Specify installation prefix and staged install destination.
Expand Down
4 changes: 2 additions & 2 deletions runtime/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ RANLIB := ranlib

WITH_GMP_DIR :=
ifneq ($(WITH_GMP_DIR),)
WITH_GMP_INC_DIR := $WITH_GMP_DIR/include
WITH_GMP_LIB_DIR := $WITH_GMP_DIR/lib
WITH_GMP_INC_DIR := $(WITH_GMP_DIR)/include
WITH_GMP_LIB_DIR := $(WITH_GMP_DIR)/lib
endif

FIND := find
Expand Down

0 comments on commit 1d08ef1

Please sign in to comment.