source: ntrip/trunk/ntripserver/makefile@ 1570

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

added plain UDP mode

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