Changeset 595 in ntrip for trunk/ntripclient/makefile


Ignore:
Timestamp:
Dec 12, 2007, 10:45:23 AM (16 years ago)
Author:
stoecker
Message:

makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ntripclient/makefile

    r499 r595  
    1 # $Id: makefile,v 1.3 2007/08/30 07:38:24 stoecker Exp $
     1# $Id: makefile,v 1.4 2007/10/05 15:32:13 stuerze Exp $
    22# probably works not with all compilers. Thought this should be easy
    33# fixable. There is nothing special at this source.
    44
     5ifdef windir
     6OPTS = -Wall -W -O3 -DWINDOWSVERSION -lwsock32
     7else
     8OPTS = -Wall -W -O3
     9endif
     10
    511ntripclient: ntripclient.c
    6         $(CC) -Wall -W -O3 $? -o $@
    7 
     12        $(CC) $(OPTS) $? -o $@
    813
    914clean:
    10         $(RM) -f ntripclient core*
     15        $(RM) ntripclient core*
    1116
    1217
Note: See TracChangeset for help on using the changeset viewer.