source: ntrip/trunk/ntripclient/makefile@ 598

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

makefile

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