From 0a4625c5fc2f43596a1fdb2ff8c8996404294052 Mon Sep 17 00:00:00 2001 From: Matteo Cypriani Date: Fri, 18 Mar 2011 15:42:40 +0100 Subject: [PATCH] Makefile: add target 'c' to build only C modules --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 88cd3e5..61df7e2 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ .PHONY: \ - all clean purge help \ + all c clean purge help \ libowlps \ libowlps-client \ owlps-client \ @@ -20,12 +20,15 @@ ## Compilation ## all: \ + c \ + owlps-positioning + +c: \ libowlps \ libowlps-client \ owlps-client \ owlps-listener \ - owlps-aggregator \ - owlps-positioning + owlps-aggregator libowlps: @make -C $@