]> git.sesse.net Git - nbtscanner/blobdiff - Makefile
Import nbtscanner 0.2.0.
[nbtscanner] / Makefile
index 4d7b6a16ec99b8fefd0d5377b876f7def7c40607..06077532d936d475a88718f1c50006a27925eaa4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,19 +2,17 @@
 
 # note that mysql_config is braindamaged ;-)
 CC=gcc
-CFLAGS=-g -Wall "`mysql_config --cflags | tr -d \'`"
+CFLAGS=-O6 -Wall -I/usr/include/mysql/
 
-LIBS=`mysql_config --libs | tr -d \'`  # '`
-LDFLAGS=-lefence
+LIBS=-L/usr/local/lib/mysql -lmysqlclient -lnsl -lm   -lz -lcrypt
+LDFLAGS=
 
 #
 # *** end of configuration ***
 #
 
-# due to some icky programming, we will have to add all the .o files everywhere.
-
 OBJSN=nbtscanner.o mysql_interface.o configfile.o nmb.o stats.o socket.o util.o id_list.o
-OBJSO=outputfile.o mysql_interface.o configfile.o nmb.o stats.o socket.o util.o id_list.o
+OBJSO=outputfile.o mysql_interface.o configfile.o
 
 all: nbtscanner outputfile
 nbtscanner: $(OBJSN)