aboutsummaryrefslogtreecommitdiff
path: root/tools/darwin/depends/sed/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/darwin/depends/sed/Makefile')
-rw-r--r--tools/darwin/depends/sed/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/tools/darwin/depends/sed/Makefile b/tools/darwin/depends/sed/Makefile
new file mode 100644
index 0000000000..d07ea3b59a
--- /dev/null
+++ b/tools/darwin/depends/sed/Makefile
@@ -0,0 +1,38 @@
+include ../Makefile.include
+
+# lib name, version
+APPNAME=sed
+VERSION=4.2.1
+SOURCE=$(APPNAME)-$(VERSION)
+ARCHIVE=$(SOURCE).tar.gz
+
+# configuration settings
+export PATH:=$(TOOLCHAIN)/bin:$(PATH)
+CONFIGURE=./configure --prefix=$(TOOLCHAIN)
+
+APP=$(SOURCE)/bin/$(APPNAME)
+APPBIN=$(TOOLCHAIN)/bin/$(APPNAME)
+
+all: $(APPBIN)
+
+$(TARBALLS_LOCATION)/$(ARCHIVE):
+ $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
+
+$(SOURCE): $(TARBALLS_LOCATION)/$(ARCHIVE)
+ rm -rf $(SOURCE)
+ $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
+ echo $(SOURCE) > .gitignore
+ cd $(SOURCE); $(CONFIGURE)
+
+$(APP): $(SOURCE)
+ make -j $(MAKE_JOBS) -C $(SOURCE)
+
+$(APPBIN):
+ make $(APP)
+ make -C $(SOURCE) install
+
+clean:
+ make -C $(SOURCE) clean
+
+distclean::
+ rm -rf $(SOURCE)