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/ext2 | |
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/ext2')
-rw-r--r-- | target/ext2/Makefile.in | 3 | ||||
-rw-r--r-- | target/ext2/ext2root.mk | 8 |
2 files changed, 8 insertions, 3 deletions
diff --git a/target/ext2/Makefile.in b/target/ext2/Makefile.in deleted file mode 100644 index 990407718..000000000 --- a/target/ext2/Makefile.in +++ /dev/null @@ -1,3 +0,0 @@ -ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2)),y) -TARGETS+=ext2root -endif diff --git a/target/ext2/ext2root.mk b/target/ext2/ext2root.mk index 8dfa513e1..2d80999fe 100644 --- a/target/ext2/ext2root.mk +++ b/target/ext2/ext2root.mk @@ -111,3 +111,11 @@ ext2root-clean: ext2root-dirclean: rm -rf $(GENEXT2_DIR) +############################################################# +# +# Toplevel Makefile options +# +############################################################# +ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2)),y) +TARGETS+=ext2root +endif |