Remove tests target from all

pull/32/head
Geoffrey Merck 4 years ago
parent cf6116fd7a
commit 5f11a1255b

@ -21,7 +21,7 @@ jobs:
sudo apt-get -y install libgtest-dev libcurl4-openssl-dev libboost-dev sudo apt-get -y install libgtest-dev libcurl4-openssl-dev libboost-dev
- run: - run:
name: "Build" name: "Build"
command: "make -j 3" command: "make -j 3 dstargateway tests"
# Invoke jobs via workflows # Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows

@ -38,7 +38,7 @@ OBJS = $(SRCS:.cpp=.o)
DEPS = $(SRCS:.cpp=.d) DEPS = $(SRCS:.cpp=.d)
.PHONY: all .PHONY: all
all: dstargateway tests all: dstargateway
dstargateway : GitVersion.h $(OBJS) dstargateway : GitVersion.h $(OBJS)
$(CC) $(CPPFLAGS) -o dstargateway $(OBJS) $(LDFLAGS) $(CC) $(CPPFLAGS) -o dstargateway $(OBJS) $(LDFLAGS)

@ -16,7 +16,7 @@ tests: rmdstargatewayapp $(OBJS)
clean : clean :
@$(RM) $(OBJS) $(DEPS) dstargateway_tests @$(RM) $(OBJS) $(DEPS) dstargateway_tests
# Again ugly trick to force rebuild of DStarGatewayApp
.PHONY rmdstargatewayapp : .PHONY rmdstargatewayapp :
rmdstargatewayapp: FORCE rmdstargatewayapp: FORCE
@$(RM) ../DStarGatewayApp.o @$(RM) ../DStarGatewayApp.o

Loading…
Cancel
Save

Powered by TurnKey Linux.