source: ntrip/trunk/ntripserver/makefile@ 2277

Last change on this file since 2277 was 1570, checked in by stoecker, 15 years ago

added plain UDP mode

File size: 435 bytes
Line 
1#!/usr/bin/make
2# $Id: makefile,v 1.8 2008/01/04 15:22:44 stuerze Exp $
3
4ifdef windir
5CC = gcc
6OPTS = -Wall -W -DWINDOWSVERSION
7LIBS = -lwsock32
8else
9OPTS = -Wall -W
10endif
11
12ntripserver: ntripserver.c
13 $(CC) $(OPTS) $? -O3 -DNDEBUG -o $@ $(LIBS)
14
15debug: ntripserver.c
16 $(CC) $(OPTS) $? -g -o ntripserver $(LIBS)
17
18clean:
19 $(RM) -f ntripserver core
20
21archive:
22 tar -cvzf ntripserver.tgz makefile ntripserver.c README startntripserver.sh
Note: See TracBrowser for help on using the repository browser.