Update ai prompt

parent 3b0057d2
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
- if you need to build the debian packages, use ./build.sh --debian - if you need to build the debian packages, use ./build.sh --debian
- if a build give you any warning, fix the warning - if a build give you any warning, fix the warning
- when you finish a todo list and everything is complete or complete a task, execute a git commit - when you finish a todo list and everything is complete or complete a task, execute a git commit
- when i ask you to update the documentation, update the readme file, the changelog, the todo list checking if we completed anything, the man files. For the documentation always include sections for the config files, examples, verify the command line is updated. - when i ask you to update the documentation, update the readme file, the changelog, the todo list checking if we completed anything, the man files. For the documentation always include sections for the config files, examples, verify the command line is updated. Include description of the web interface and functionalities of wssshd, and then commit changes
- If you need to rebuild the project, use always ./build.sh --clean && ./build.sh
- if you need to build the debian packages, use ./build.sh --debian
- if a build give you any warning, fix the warning
- when you finish a todo list and everything is complete, execute a git commit
- when i ask you to update the documentation, update the readme file, the changelog, the todo list checking if we completed anything, the man files. For the documentation always include sections for the config files, examples, verify the command line is updated.
...@@ -67,7 +67,10 @@ LIB_SRCS = libwsssht/wssshlib.c libwsssht/websocket.c libwsssht/wssh_ssl.c libws ...@@ -67,7 +67,10 @@ LIB_SRCS = libwsssht/wssshlib.c libwsssht/websocket.c libwsssht/wssh_ssl.c libws
LIB_OBJS = $(LIB_SRCS:.c=.o) LIB_OBJS = $(LIB_SRCS:.c=.o)
SRCS = wssshc.c wsssht.c wsssh.c wsscp.c SRCS = wssshc.c wsssht.c wsssh.c wsscp.c
OBJS = $(SRCS:.c=.o) OBJS = $(SRCS:.c=.o)
TARGETS = wssshc wsssht wsssh wsscp TEST_SRCS = test_vnc_client.c test_rdp_client.c
TEST_OBJS = $(TEST_SRCS:.c=.o)
TEST_TARGETS = test_vnc_client test_rdp_client
TARGETS = wssshc wsssht wsssh wsscp $(TEST_TARGETS)
# Man pages # Man pages
MANPAGES = man/wssshc.1 man/wsssht.1 man/wsssh.1 man/wsscp.1 MANPAGES = man/wssshc.1 man/wsssht.1 man/wsssh.1 man/wsscp.1
...@@ -88,13 +91,19 @@ wsssh: wsssh.o ...@@ -88,13 +91,19 @@ wsssh: wsssh.o
wsscp: wsscp.o wsscp: wsscp.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_vnc_client: test_vnc_client.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_rdp_client: test_rdp_client.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
# Object files # Object files
%.o: %.c %.o: %.c
$(CC) $(CFLAGS) -c $< -o $@ $(CC) $(CFLAGS) -c $< -o $@
# Clean # Clean
clean: clean:
rm -f $(OBJS) $(LIB_OBJS) $(TARGETS) wsscp.o libwsssht/control_messages.o libwsssht/data_messages.o rm -f $(OBJS) $(LIB_OBJS) $(TEST_OBJS) $(TARGETS) wsscp.o libwsssht/control_messages.o libwsssht/data_messages.o
# Install (optional) # Install (optional)
install: all install: all
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment