add badge
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded

This commit is contained in:
j3d1 2020-05-26 14:00:14 +02:00
parent 1e7abab618
commit 8342cc7742
2 changed files with 9 additions and 6 deletions

View file

@ -9,26 +9,26 @@ prefix=/usr/local
OBJECTS = build/memdb.o build/spmemvfs.o build/crypto.o build/Manager.o build/Database.o
all: build/shepherd build/test
all: build/shepherd
build/shepherd: build/shepherd.o $(OBJECTS)
@mkdir -p $(dir $@)
@echo "\n->"$@
@echo link $@
@$(LD) $(CXXFLAGS) $^ -o $@ -lsqlite3 -lsodium -lstdc++fs
build/test: build/testmemvfs.o $(OBJECTS)
@mkdir -p $(dir $@)
@echo "\n->"$@
@echo link $@
@$(LD) $(CXXFLAGS) $^ -o $@ -lsqlite3 -lsodium -lstdc++fs
build/%.o: src/%.cpp src/%.h
@mkdir -p $(dir $@)
@echo -n $@" "
@echo complie $@
@$(CXX) $(CXXFLAGS) -c -o $@ $<
build/%.o: src/%.c src/%.h
@mkdir -p $(dir $@)
@echo -n $@" "
@echo compile $@
@$(CC) $(CFLAGS) -c -o $@ $<
rsa: rsa.cpp
@ -49,4 +49,4 @@ clean:
#%.o : %.cpp
# $(CC) $(CFLAGS) -c $^ -o $@

View file

@ -0,0 +1,3 @@
# shepherd
[![Build status](http://atlas.j3d1.de:8050/api/projects/status/ky7t0a756o9wo6b7?svg=true)](http://atlas.j3d1.de:8050/project/AppVeyor/shepherd)