aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorUwe Hermann2009-07-20 15:35:12 +0200
committerUwe Hermann2009-07-20 15:35:12 +0200
commitdb0e59da962e53ba84b961a1b3d5e6a3badb2726 (patch)
tree0f51f98194f31b352621b6f1c331db644c46219d /Makefile
parent4f43d8c622fddabfa891421b7d5f5daef2f364a9 (diff)
Rename example subdir to examples, we'll have more than one.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 3f7b39d..668c941 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