#17 fnished prepratin for aditional tools

pull/32/head
Geoffrey Merck 4 years ago
parent af4cd2819f
commit 6a6ad5a70f

@ -20,14 +20,11 @@ jobs:
sudo apt-get update
sudo apt-get -y install libgtest-dev libcurl4-openssl-dev libboost-dev libgps-dev
- run:
name: "Build App"
command: "make -j 3 dstargateway USE_GPSD=1"
- run:
name: "Build Tests"
command: "make -j 3 tests USE_GPSD=1"
name: "Build"
command: "make -j 3 ENABLE_DEBUG=1 USE_GPSD=1"
- run:
name: "Run Tests"
command: "make run-tests USE_GPSD=1"
command: "make run-tests"
# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
workflows:

@ -0,0 +1,19 @@
SRCS = $(wildcard *.cpp)
OBJS = $(SRCS:.cpp=.o)
DEPS = $(SRCS:.cpp=.d)
Common.a: $(OBJS) ../APRS/APRS.a ../BaseCommon/BaseCommon.a ../DStarBase/DStarBase.a ../IRCDDB/IRCDDB.a ../VersionInfo/GitVersion.h
$(AR) rcs Common.a $(OBJS)
%.o : %.cpp
$(CC) -I../APRS -I../BaseCommon -I../DStarBase -I../IRCDDB -I../VersionInfo $(CPPFLAGS) -MMD -MD -c $< -o $@
.PHONY clean:
clean:
$(RM) *.o *.d Common.a
../APRS/APRS.a:
../BaseCommon/BaseCommon.a:
../DStarBase/DStarBase.a:
../IRCDDB/IRCDDB.a:
../VersionInfo/GitVersion.h:

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save

Powered by TurnKey Linux.