Changeset 611 in ntrip for trunk/ntripclient
- Timestamp:
- Dec 14, 2007, 3:52:16 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ntripclient/makefile
r595 r611 1 # $Id: makefile,v 1. 4 2007/10/05 15:32:13 stuerzeExp $1 # $Id: makefile,v 1.5 2007/12/12 09:45:23 stoecker Exp $ 2 2 # probably works not with all compilers. Thought this should be easy 3 3 # fixable. There is nothing special at this source. 4 4 5 5 ifdef windir 6 OPTS = -Wall -W -O3 -DWINDOWSVERSION -lwsock32 6 CC = gcc 7 OPTS = -Wall -W -O3 -DWINDOWSVERSION 8 LIBS = -lwsock32 7 9 else 8 10 OPTS = -Wall -W -O3 … … 10 12 11 13 ntripclient: ntripclient.c 12 $(CC) $(OPTS) $? -o $@ 14 $(CC) $(OPTS) $? -o $@ $(LIBS) 13 15 14 16 clean: … … 18 20 archive: 19 21 tar -czf ntripclient.tgz ntripclient.c makefile README startntripclient.sh 22
Note:
See TracChangeset
for help on using the changeset viewer.