diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-02-10 03:06:39 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-02-10 03:06:39 +0000 |
commit | d06645d8eddce3a22144a9ef8961a8f7599d319e (patch) | |
tree | 526cac83ded3499b57032bb118ffbab0b72222d4 /target/squashfs | |
parent | 040f60b3ea53947675333e60e14838ddd9944abd (diff) | |
download | buildroot-novena-d06645d8eddce3a22144a9ef8961a8f7599d319e.tar.gz buildroot-novena-d06645d8eddce3a22144a9ef8961a8f7599d319e.zip |
There is no need to have a separate 'Makefile.in' file in the
general case, therefore, combine the toplevel Makefile options
such as setting TARGETS into the per-package *.mk file
Diffstat (limited to 'target/squashfs')
-rw-r--r-- | target/squashfs/Makefile.in | 3 | ||||
-rw-r--r-- | target/squashfs/squashfsroot.mk | 8 |
2 files changed, 8 insertions, 3 deletions
diff --git a/target/squashfs/Makefile.in b/target/squashfs/Makefile.in deleted file mode 100644 index 2278d720c..000000000 --- a/target/squashfs/Makefile.in +++ /dev/null @@ -1,3 +0,0 @@ -ifeq ($(strip $(BR2_TARGET_ROOTFS_SQUASHFS)),y) -TARGETS+=squashfsroot -endif diff --git a/target/squashfs/squashfsroot.mk b/target/squashfs/squashfsroot.mk index e120172ba..5a4536fed 100644 --- a/target/squashfs/squashfsroot.mk +++ b/target/squashfs/squashfsroot.mk @@ -49,3 +49,11 @@ squashfsroot-clean: squashfsroot-dirclean: rm -rf $(SQUASHFS_DIR) +############################################################# +# +# Toplevel Makefile options +# +############################################################# +ifeq ($(strip $(BR2_TARGET_ROOTFS_SQUASHFS)),y) +TARGETS+=squashfsroot +endif |