Index: trunk/ntripserver/makefile
===================================================================
--- trunk/ntripserver/makefile	(revision 653)
+++ trunk/ntripserver/makefile	(revision 1570)
@@ -1,18 +1,18 @@
 #!/usr/bin/make
-# $Id: makefile,v 1.7 2007/08/30 14:57:34 stuerze Exp $
+# $Id: makefile,v 1.8 2008/01/04 15:22:44 stuerze Exp $
 
 ifdef windir
 CC   = gcc
-OPTS = -Wall -W -O3 -DWINDOWSVERSION
+OPTS = -Wall -W -DWINDOWSVERSION
 LIBS = -lwsock32
 else
-OPTS = -Wall -W -O3
+OPTS = -Wall -W
 endif
 
 ntripserver: ntripserver.c
-	$(CC) $(OPTS) $? -DNDEBUG -o $@ $(LIBS)
+	$(CC) $(OPTS) $? -O3 -DNDEBUG -o $@ $(LIBS)
 
 debug: ntripserver.c
-	$(CC) $(OPTS) $? -o ntripserver $(LIBS)
+	$(CC) $(OPTS) $? -g -o ntripserver $(LIBS)
 
 clean:
