diff options
author | 2007-09-14 17:43:16 (GMT) | |
---|---|---|
committer | 2007-09-14 17:43:16 (GMT) | |
commit | 7b70a704e0f9197a79a37007968246ce4f66bcc0 (patch) | |
tree | 531028ea1f0dfb7159559857b539a413d4711412 /Makefile.in | |
parent | ae7e017380b93899c1165acb9b60ddd80276b022 (diff) |
Add the framework to have architecture-specific configuration and functions.
API is not yet defined.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 9dc263c..402e3ee 100644 --- a/Makefile.in +++ b/Makefile.in @@ -91,7 +91,7 @@ install-bin: install-local-test $(BINDIR) install-lib: install-local-test $(LIBDIR) install-lib-main install-lib-samples install-lib-main: install-local-test $(LIBDIR) - @for src_dir in config kconfig patches scripts tools; do \ + @for src_dir in arch config kconfig patches scripts tools; do \ echo " INST $${src_dir}/"; \ tar cf - --exclude=.svn $${src_dir} |(cd $(LIBDIR); tar xf -); \ done @@ -100,6 +100,7 @@ install-lib-main: install-local-test $(LIBDIR) echo " INST $${src_file}"; \ install -m 644 $${src_file} $(LIBDIR)/$${src_file}; \ done + @ln -sf $(LIBDIR)/arch $(LIBDIR)/config/arch # Samples need a little love: # - change every occurence of CT_TOP_DIR to CT_LIB_DIR |