-
Notifications
You must be signed in to change notification settings - Fork 936
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ubuntu14
committed
Apr 12, 2016
1 parent
1618216
commit 1e72b67
Showing
5 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
base_path = ../../.. | ||
PROG = string | ||
include ../../Makefile.in | ||
#Path for SunOS | ||
ifeq ($(findstring SunOS, $(UNIXNAME)), SunOS) | ||
EXTLIBS = -liconv | ||
endif | ||
ifeq ($(findstring FreeBSD, $(UNIXNAME)), FreeBSD) | ||
EXTLIBS = -L/usr/local/lib -liconv | ||
endif | ||
ifeq ($(findstring Darwin, $(UNIXNAME)), Darwin) | ||
EXTLIBS += -L/usr/lib -liconv | ||
endif | ||
PROG = string |