source: ntrip/trunk/ntripclient/makefile@ 2381

Last change on this file since 2381 was 2381, checked in by stoecker, 14 years ago

updated makefile

File size: 562 bytes
Line 
1# $Id: makefile,v 1.7 2008/04/15 13:27:49 stoecker 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
6CC = gcc
7OPTS = -Wall -W -O3 -DWINDOWSVERSION
8LIBS = -lwsock32
9else
10OPTS = -Wall -W -O3
11endif
12
13ntripclient: ntripclient.c serial.c
14 $(CC) $(OPTS) ntripclient.c -o $@ $(LIBS)
15
16clean:
17 $(RM) ntripclient core*
18
19
20archive:
21 zip -9 ntripclient.zip ntripclient.c makefile README serial.c
22
23tgzarchive:
24 tar -czf ntripclient.tgz ntripclient.c makefile README serial.c
Note: See TracBrowser for help on using the repository browser.