Skip to content

Commit

Permalink
Do not build dependencies if we already have them installed elsewhere
Browse files Browse the repository at this point in the history
  • Loading branch information
Uri Blumenthal committed Sep 23, 2020
1 parent 054b779 commit 008c2ca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ DIRS=$(DEPS_PACKAGES)
# relic openssl gtest
all: $(DIRS)
mkdir -p root/lib
mkdir -p root/bin
ifndef NO_DEPS
for d in $(DIRS); do \
make -C $$d; \
done
endif

clean: $(DIRS)
rm -rf root
for d in $(DIRS); do \
for d in relic openssl gtest; do \
make -C $$d clean; \
done

0 comments on commit 008c2ca

Please sign in to comment.