Browse Source

allow parallel building

git.mgm/mediaproxy-ng/2.0
Richard Fuchs 14 years ago
parent
commit
1448625c8f
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      daemon/Makefile

+ 6
- 6
daemon/Makefile View File

@ -36,24 +36,24 @@ OBJS= $(SRCS:.c=.o)
all: all:
ifeq ($(REDIS),yes) ifeq ($(REDIS),yes)
make -C $(LIBREDISDIR) static
$(MAKE) -C $(LIBREDISDIR) static
endif endif
make mediaproxy-ng
$(MAKE) mediaproxy-ng
no-redis: no-redis:
make REDIS=no all
$(MAKE) REDIS=no all
debug: debug:
make DBG=yes all
$(MAKE) DBG=yes all
tests: tests:
make aux-test poller-test
$(MAKE) aux-test poller-test
dep: .depend dep: .depend
clean: clean:
rm -f $(OBJS) mediaproxy-ng aux-test poller-test aux-test.o poller-test.o .depend build_time.h core 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 .depend: $(SRCS) Makefile build_time.h
$(CC) $(CFLAGS) -M $(SRCS) | sed -e 's/:/ .depend:/' > .depend $(CC) $(CFLAGS) -M $(SRCS) | sed -e 's/:/ .depend:/' > .depend


Loading…
Cancel
Save