summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRod Whitby <rod@whitby.id.au>2005-08-02 03:50:07 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-02 03:50:07 +0000
commit0fad3350e7796dea30ab8d3434306b983f3f8bf0 (patch)
tree603ac6ed32d03e972403ac43adc6b15b8130f9de
parent71666fb57251f3375af43be126f351c107c1aff6 (diff)
Removed the old unlsung Makefile
-rw-r--r--unslung/Makefile57
1 files changed, 0 insertions, 57 deletions
diff --git a/unslung/Makefile b/unslung/Makefile
deleted file mode 100644
index 88a143970a..0000000000
--- a/unslung/Makefile
+++ /dev/null
@@ -1,57 +0,0 @@
-# Makefile for UcSlugC
-# Licensed under the GPL v2 or later
-#
-
-BUILD_DIRS = downloads
-REQUIRED_DIRS = bitbake openembedded
-FIRMWARE_DEPS = create-topdir $(BUILD_DIRS) $(REQUIRED_DIRS)
-
-# The default rule is to build the firmware in an unprotected environment.
-firmware: $(FIRMWARE_DEPS)
- . ./setup-env; exec bitbake $${MAKE_TARGET}
-
-# This rule clobbers the environment (note that ccache uses '$HOME' by
-# default, so the cache will end up there).
-firmware-safe:
- env -i HOME="$${HOME}" PATH="$${PATH}" $(MAKE) firmware
-
-# topdir.conf is re-created automatically if the directory is
-# moved - this will cause a full bitbake reparse
-.PHONY: create-topdir
-create-topdir: conf/topdir.conf
- . conf/topdir.conf && test "`pwd`" = "$$TOPDIR" || echo "TOPDIR='`pwd`'" > conf/topdir.conf
-
-conf/topdir.conf:
- echo "TOPDIR='`pwd`'" >$@
-
-# rules for directories - if a symlink exists and the target does not
-# exist something will go wrong in the build, therefore cause a failure
-# here by the mkdir.
-$(BUILD_DIRS):
- test -d $@ || if test -d ../$@; then ln -s ../$@ .; else mkdir $@; fi
-
-# these directories must already exist - either in TOPDIR (here) or in ..
-$(REQUIRED_DIRS):
- test -d $@ || if test -d ../$@; then ln -s ../$@ .; else exit 1; fi
-
-.PHONY: clobber
-clobber:
- rm -rf tmp
-
-.PHONY: source
-source: $(REQUIRED_DIRS)
- tar zcf $${DISTRO}.tar.gz --exclude=MT Makefile setup-env conf/site.conf conf/auto.conf \
- conf/local.conf.sample $(REQUIRED_DIRS:=/.)
-
-# This target probably isn't important any longer, because the -source
-# target above does the right thing
-.PHONY:
-distclean: clobber
- rm -rf conf/topdir.conf conf/local.conf $(BUILD_DIRS)
-
-# This target is mainly for testing - it is intended to put the disto directory
-# back to its original state, it will destroy a source-tarball system (because
-# it removes directories from the tarball).
-.PHONY:
-really-clean: distclean
- rm -rf $(REQUIRED_DIRS) $${DISTRO}-source.tar.gz