added .gitignore
[NeonServV5.git] / Makefile
index e54e86e841ed064c577e5655b4f2ad68add810ad..3f6a6eb6bfdc3fbb172100943d0218792f8be5a9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,21 @@
 CFLAGS=-Wall -Wshadow -Werror
 
 all:
-       gcc -g -O2 -I. -c IRCEvents.c -o IRCEvents.o ${CFLAGS}
-       gcc -g -O2 -I. -c main.c -o main.o ${CFLAGS}
-       gcc -g -O2 -I. -c ChanNode.c -o ChanNode.o ${CFLAGS}
-       gcc -g -O2 -I. -c IRCParser.c -o IRCParser.o ${CFLAGS}
-       gcc -g -O2 -I. -c ClientSocket.c -o ClientSocket.o ${CFLAGS}
-       gcc -g -O2 -I. -c UserNode.c -o UserNode.o ${CFLAGS}
-       gcc -g -O2 -I. -c ChanUser.c -o ChanUser.o ${CFLAGS}
-       gcc -g -O2 -I. -c WHOHandler.c -o WHOHandler.o ${CFLAGS}
-       gcc -g -O2 -I. -c modcmd.c -o modcmd.o ${CFLAGS}
-       gcc -g -O2 -I. -c bots.c -o bots.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c IRCEvents.c -o IRCEvents.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c main.c -o main.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c ChanNode.c -o ChanNode.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c IRCParser.c -o IRCParser.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c ClientSocket.c -o ClientSocket.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c UserNode.c -o UserNode.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c ChanUser.c -o ChanUser.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c WHOHandler.c -o WHOHandler.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c modcmd.c -o modcmd.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c mysqlConn.c -o mysqlConn.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c bots.c -o bots.o ${CFLAGS}
+       gcc -g -O2 -I. -I/usr/include/mysql -c bot_NeonServ.c -o bot_NeonServ.o ${CFLAGS}
 
 install:
-       gcc -g -O0 -I. -o neonserv *.o ${CFLAGS}
+       gcc -g -O0 -I. -I/usr/include/mysql -o neonserv *.o ${CFLAGS} -lmysqlclient -lz -lcrypt -lnsl -lm -L/usr/lib64 -lssl -lcrypto
 
 clean:
        rm *.o