Commit 28f32c57 authored by Jan Kiene's avatar Jan Kiene
Browse files

remove NOTPARALLEL from makefiles and adjust build_all script

parent bbdf8708
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -148,7 +148,6 @@ DEPS = $(addprefix $(OBJDIR)/,$(SRCS_LIBCOM:.c=.P) $(SRCS_LIBDEBUG:.c=.P) $(SRCS
###############################################################################

.PHONY: all clean clean_unittests clean_all
.NOTPARALLEL: clean clean_unittests clean_all

all: $(CLI_APIENC) $(CLI_APIDEC)

+5 −7
Original line number Diff line number Diff line
@@ -6,13 +6,11 @@ if [ ! -d "lib_com" ]; then
fi

# first build codec, everything else needs this anyway
make clean all
make clean all -j
# build unittests
make unittests
make unittests -j
# build prerenderer
cd scripts/prerenderer
make
make -C scripts/prerenderer -j
# build standalone TD object renderer
cd ..
cd td_object_renderer/object_renderer_standalone
make
make -C scripts/td_object_renderer/object_renderer_standalone -j
+0 −3
Original line number Diff line number Diff line
@@ -128,7 +128,6 @@ DEPS = $(addprefix $(OBJDIR)/,$(SRCS_LIBCOM:.c=.P) $(SRCS_LIBDEBUG:.c=.P) $(SRCS
###############################################################################

.PHONY: all clean clean_all
.NOTPARALLEL: clean clean_all

all: $(CLI_PRD)

@@ -155,8 +154,6 @@ $(CLI_PRD): $(LIB_LIBENC) $(LIB_LIBDEC) $(LIB_LIBDEBUG) $(LIB_LIBCOM) $(LIB_LIB

libs: $(LIB_LIBENC) $(LIB_LIBDEBUG) $(LIB_LIBCOM) $(LIB_LIBDEC) $(LIB_LIBUTIL)

#.NOTPARALLEL: clean clean_all

clean:
	$(QUIET)$(RM) $(OBJS_LIBENC) $(OBJS_LIBDEC) $(OBJS_CLI_APPPRD) $(DEPS)
	$(QUIET)$(RM) $(DEPS:.P=.d)
+0 −3
Original line number Diff line number Diff line
@@ -133,7 +133,6 @@ DEPS = $(addprefix $(OBJDIR)/,$(SRCS_LIBCOM:.c=.P) $(SRCS_LIBDEBUG:.c=.P) $(SRCS
###############################################################################

.PHONY: all clean clean_all
.NOTPARALLEL: clean clean_all

all: $(CLI_REN)

@@ -160,8 +159,6 @@ $(CLI_REN): $(LIB_LIBENC) $(LIB_LIBDEC) $(LIB_LIBDEBUG) $(LIB_LIBCOM) $(LIB_LIB

libs: $(LIB_LIBENC) $(LIB_LIBDEBUG) $(LIB_LIBCOM) $(LIB_LIBDEC) $(LIB_LIBUTIL)

#.NOTPARALLEL: clean clean_all

clean:
	$(QUIET)$(RM) $(OBJS_LIBENC) $(OBJS_LIBDEC) $(OBJS_REN) $(DEPS)
	$(QUIET)$(RM) $(DEPS:.P=.d)