PW from cin

This commit is contained in:
j3d1 2018-09-05 21:51:13 +02:00
parent 15d7e00c29
commit 56affbe423
9 changed files with 246 additions and 183 deletions

View file

@ -5,7 +5,7 @@ DEBUG = -g
prefix=/usr/local
all: shepherd rsa
all: shepherd
shepherd: src/*.cpp src/*.h
mkdir -p bin
@ -18,6 +18,14 @@ rsa: rsa.cpp
install: bin/shepherd
install -m 0755 bin/shepherd $(prefix)/bin
.PHONY: test
test:
test/test.sh test/test.db
# remove produced files, invoke as "make clean"
clean:
rm -f bin/*
#%.o : %.cpp
# $(CC) $(CFLAGS) -c $^ -o $@