source: ntrip/trunk/ntripclient/makefile@ 595

Last change on this file since 595 was 595, checked in by stoecker, 16 years ago

makefile

File size: 442 bytes
RevLine 
[595]1# $Id: makefile,v 1.4 2007/10/05 15:32:13 stuerze Exp $
[466]2# probably works not with all compilers. Thought this should be easy
3# fixable. There is nothing special at this source.
4
[595]5ifdef windir
6OPTS = -Wall -W -O3 -DWINDOWSVERSION -lwsock32
7else
8OPTS = -Wall -W -O3
9endif
10
[484]11ntripclient: ntripclient.c
[595]12 $(CC) $(OPTS) $? -o $@
[466]13
[499]14clean:
[595]15 $(RM) ntripclient core*
[499]16
17
[466]18archive:
[484]19 tar -czf ntripclient.tgz ntripclient.c makefile README startntripclient.sh
Note: See TracBrowser for help on using the repository browser.