Changeset 1570 in ntrip for trunk/ntripserver/makefile


Ignore:
Timestamp:
Feb 10, 2009, 1:20:09 PM (15 years ago)
Author:
stoecker
Message:

added plain UDP mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ntripserver/makefile

    r653 r1570  
    11#!/usr/bin/make
    2 # $Id: makefile,v 1.7 2007/08/30 14:57:34 stuerze Exp $
     2# $Id: makefile,v 1.8 2008/01/04 15:22:44 stuerze Exp $
    33
    44ifdef windir
    55CC   = gcc
    6 OPTS = -Wall -W -O3 -DWINDOWSVERSION
     6OPTS = -Wall -W -DWINDOWSVERSION
    77LIBS = -lwsock32
    88else
    9 OPTS = -Wall -W -O3
     9OPTS = -Wall -W
    1010endif
    1111
    1212ntripserver: ntripserver.c
    13         $(CC) $(OPTS) $? -DNDEBUG -o $@ $(LIBS)
     13        $(CC) $(OPTS) $? -O3 -DNDEBUG -o $@ $(LIBS)
    1414
    1515debug: ntripserver.c
    16         $(CC) $(OPTS) $? -o ntripserver $(LIBS)
     16        $(CC) $(OPTS) $? -g -o ntripserver $(LIBS)
    1717
    1818clean:
Note: See TracChangeset for help on using the changeset viewer.