Changeset 611 in ntrip


Ignore:
Timestamp:
Dec 14, 2007, 3:52:16 PM (16 years ago)
Author:
stuerze
Message:

argument order changed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ntripclient/makefile

    r595 r611  
    1 # $Id: makefile,v 1.4 2007/10/05 15:32:13 stuerze Exp $
     1# $Id: makefile,v 1.5 2007/12/12 09:45:23 stoecker Exp $
    22# probably works not with all compilers. Thought this should be easy
    33# fixable. There is nothing special at this source.
    44
    55ifdef windir
    6 OPTS = -Wall -W -O3 -DWINDOWSVERSION -lwsock32
     6CC   = gcc
     7OPTS = -Wall -W -O3 -DWINDOWSVERSION
     8LIBS = -lwsock32
    79else
    810OPTS = -Wall -W -O3
     
    1012
    1113ntripclient: ntripclient.c
    12         $(CC) $(OPTS) $? -o $@
     14        $(CC) $(OPTS) $? -o $@ $(LIBS)
    1315
    1416clean:
     
    1820archive:
    1921        tar -czf ntripclient.tgz ntripclient.c makefile README startntripclient.sh
     22
Note: See TracChangeset for help on using the changeset viewer.