From 1448625c8f1bfdfa0902a78e07a7cb5e887871e9 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 6 Dec 2011 21:48:21 +0000 Subject: [PATCH] allow parallel building --- daemon/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/daemon/Makefile b/daemon/Makefile index aa76fecbb..32e5dd91b 100644 --- a/daemon/Makefile +++ b/daemon/Makefile @@ -36,24 +36,24 @@ OBJS= $(SRCS:.c=.o) all: ifeq ($(REDIS),yes) - make -C $(LIBREDISDIR) static + $(MAKE) -C $(LIBREDISDIR) static endif - make mediaproxy-ng + $(MAKE) mediaproxy-ng no-redis: - make REDIS=no all + $(MAKE) REDIS=no all debug: - make DBG=yes all + $(MAKE) DBG=yes all tests: - make aux-test poller-test + $(MAKE) aux-test poller-test dep: .depend clean: rm -f $(OBJS) mediaproxy-ng aux-test poller-test aux-test.o poller-test.o .depend build_time.h core - make -C $(LIBREDISDIR) clean + $(MAKE) -C $(LIBREDISDIR) clean .depend: $(SRCS) Makefile build_time.h $(CC) $(CFLAGS) -M $(SRCS) | sed -e 's/:/ .depend:/' > .depend