From db0e59da962e53ba84b961a1b3d5e6a3badb2726 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Mon, 20 Jul 2009 15:35:12 +0200 Subject: [PATCH] Rename example subdir to examples, we'll have more than one. --- Makefile | 10 +++++----- {example => examples}/Makefile | 0 {example => examples}/README | 0 {example => examples}/blink.c | 0 {example => examples}/blink.ld | 0 5 files changed, 5 insertions(+), 5 deletions(-) rename {example => examples}/Makefile (100%) rename {example => examples}/README (100%) rename {example => examples}/blink.c (100%) rename {example => examples}/blink.ld (100%) diff --git a/Makefile b/Makefile index 3f7b39dc..668c9410 100644 --- a/Makefile +++ b/Makefile @@ -34,15 +34,15 @@ endif all: build -build: lib example +build: lib examples lib: @printf " BUILD lib\n" $(Q)$(MAKE) -C lib all -example: lib - @printf " BUILD example\n" - $(Q)$(MAKE) -C example all +examples: lib + @printf " BUILD examples\n" + $(Q)$(MAKE) -C examples all install: build @printf " INSTALL headers\n" @@ -54,7 +54,7 @@ install: build $(Q)$(INSTALL) -m 0644 lib/*.a $(LIBDIR) clean: - $(Q)$(MAKE) -C example clean + $(Q)$(MAKE) -C examples clean $(Q)$(MAKE) -C lib clean .PHONY: build lib example install clean diff --git a/example/Makefile b/examples/Makefile similarity index 100% rename from example/Makefile rename to examples/Makefile diff --git a/example/README b/examples/README similarity index 100% rename from example/README rename to examples/README diff --git a/example/blink.c b/examples/blink.c similarity index 100% rename from example/blink.c rename to examples/blink.c diff --git a/example/blink.ld b/examples/blink.ld similarity index 100% rename from example/blink.ld rename to examples/blink.ld