diff options
author | Julien Dessaux | 2018-08-26 15:55:38 +0200 |
---|---|---|
committer | Julien Dessaux | 2018-08-26 16:04:11 +0200 |
commit | beff818f25ae69cfe8501e18271b2509320de8df (patch) | |
tree | d132e9d366aaebac9f7b91b8a63fcafbbe550af8 /GNUmakefile | |
parent | Added address sanitization and fixed found bugs (diff) | |
download | bastion-beff818f25ae69cfe8501e18271b2509320de8df.tar.gz bastion-beff818f25ae69cfe8501e18271b2509320de8df.tar.bz2 bastion-beff818f25ae69cfe8501e18271b2509320de8df.zip |
Added session recording with https://github.com/kilobyte/termrec
Diffstat (limited to '')
-rw-r--r-- | GNUmakefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 00f18ad..52ee070 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -8,8 +8,7 @@ OBJ=$(sources:.c=.o) all: bastion bastion: $(OBJ) - #$(CC) ${DEBUG} -o bastion $(OBJ) -lssh -lutil -lpthread -lssh_threads - $(CC) ${DEBUG} -o bastion $(OBJ) -lssh -lutil + $(CC) ${DEBUG} -o bastion $(OBJ) -lssh -lutil -ltty clean: $(RM) bastion *.[do] src/*.[do] |