Last change
on this file since 1229 was 834, checked in by stoecker, 17 years ago |
added support for serial output
|
File size:
490 bytes
|
Line | |
---|
1 | # $Id: makefile,v 1.6 2007/12/14 14:52:16 stuerze Exp $
|
---|
2 | # probably works not with all compilers. Thought this should be easy
|
---|
3 | # fixable. There is nothing special at this source.
|
---|
4 |
|
---|
5 | ifdef windir
|
---|
6 | CC = gcc
|
---|
7 | OPTS = -Wall -W -O3 -DWINDOWSVERSION
|
---|
8 | LIBS = -lwsock32
|
---|
9 | else
|
---|
10 | OPTS = -Wall -W -O3
|
---|
11 | endif
|
---|
12 |
|
---|
13 | ntripclient: ntripclient.c serial.c
|
---|
14 | $(CC) $(OPTS) ntripclient.c -o $@ $(LIBS)
|
---|
15 |
|
---|
16 | clean:
|
---|
17 | $(RM) ntripclient core*
|
---|
18 |
|
---|
19 |
|
---|
20 | archive:
|
---|
21 | tar -czf ntripclient.tgz ntripclient.c makefile README startntripclient.sh
|
---|
22 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.