make
gcc -g -Wall -c main.c
gcc -g -Wall -c auth.c
auth.c:3:27: warning: extra tokens at end of #include directive
#include <libssh/libssh.h>;
^
auth.c:4:27: warning: extra tokens at end of #include directive
#include <libssh/server.h>;
^
auth.c:5:19: warning: extra tokens at end of #include directive
#include <stdio.h>;
^
auth.c:6:20: warning: extra tokens at end of #include directive
#include <stdlib.h>;
^
auth.c:7:20: warning: extra tokens at end of #include directive
#include <string.h>;
^
auth.c:8:19: warning: extra tokens at end of #include directive
#include <errno.h>;
^
auth.c:9:20: warning: extra tokens at end of #include directive
#include <unistd.h>;
^
auth.c:10:17: warning: extra tokens at end of #include directive
#include <pty.h>;
^
auth.c:11:18: warning: extra tokens at end of #include directive
#include <time.h>;
^
auth.c:12:24: warning: extra tokens at end of #include directive
#include <sys/socket.h>;
^
auth.c:13:23: warning: extra tokens at end of #include directive
#include <arpa/inet.h>;
^
auth.c:14:23: warning: extra tokens at end of #include directive
#include <curl/curl.h>;
^
auth.c:14:24: fatal error: curl/curl.h: No such file or directory
compilation terminated.
Makefile:16: recipe for target 'auth.o' failed
make: *** [auth.o] Error 1
This is the error which I'm getting if I run make
make
gcc -g -Wall -c main.c
gcc -g -Wall -c auth.c
auth.c:3:27: warning: extra tokens at end of #include directive
#include <libssh/libssh.h>;
^
auth.c:4:27: warning: extra tokens at end of #include directive
#include <libssh/server.h>;
^
auth.c:5:19: warning: extra tokens at end of #include directive
#include <stdio.h>;
^
auth.c:6:20: warning: extra tokens at end of #include directive
#include <stdlib.h>;
^
auth.c:7:20: warning: extra tokens at end of #include directive
#include <string.h>;
^
auth.c:8:19: warning: extra tokens at end of #include directive
#include <errno.h>;
^
auth.c:9:20: warning: extra tokens at end of #include directive
#include <unistd.h>;
^
auth.c:10:17: warning: extra tokens at end of #include directive
#include <pty.h>;
^
auth.c:11:18: warning: extra tokens at end of #include directive
#include <time.h>;
^
auth.c:12:24: warning: extra tokens at end of #include directive
#include <sys/socket.h>;
^
auth.c:13:23: warning: extra tokens at end of #include directive
#include <arpa/inet.h>;
^
auth.c:14:23: warning: extra tokens at end of #include directive
#include <curl/curl.h>;
^
auth.c:14:24: fatal error: curl/curl.h: No such file or directory
compilation terminated.
Makefile:16: recipe for target 'auth.o' failed
make: *** [auth.o] Error 1
This is the error which I'm getting if I run make