diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2013-03-19 18:51:14 -0400 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2013-03-19 18:51:14 -0400 |
commit | 71c5bdac2ec7fac58d013512f7ca0d60dffd5dfa (patch) | |
tree | 97c983c5548d9e39a6f7b15fc4c4dc7b87cb8647 /tools/darwin/depends/sed/Makefile | |
parent | a8e2a8afda47b0599e678a15746ff8822245c8f2 (diff) |
depends: nuke old darwin depends
Diffstat (limited to 'tools/darwin/depends/sed/Makefile')
-rw-r--r-- | tools/darwin/depends/sed/Makefile | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/tools/darwin/depends/sed/Makefile b/tools/darwin/depends/sed/Makefile deleted file mode 100644 index d07ea3b59a..0000000000 --- a/tools/darwin/depends/sed/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -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) |