source: ntrip/trunk/ntripclient/makefile@ 611

Last change on this file since 611 was 611, checked in by stuerze, 16 years ago

argument order changed

File size: 471 bytes
RevLine 
[611]1# $Id: makefile,v 1.5 2007/12/12 09:45:23 stoecker 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
[611]6CC = gcc
7OPTS = -Wall -W -O3 -DWINDOWSVERSION
8LIBS = -lwsock32
[595]9else
10OPTS = -Wall -W -O3
11endif
12
[484]13ntripclient: ntripclient.c
[611]14 $(CC) $(OPTS) $? -o $@ $(LIBS)
[466]15
[499]16clean:
[595]17 $(RM) ntripclient core*
[499]18
19
[466]20archive:
[484]21 tar -czf ntripclient.tgz ntripclient.c makefile README startntripclient.sh
[611]22
Note: See TracBrowser for help on using the repository browser.