Changeset 472 in ntrip


Ignore:
Timestamp:
Jun 7, 2007, 9:47:24 AM (17 years ago)
Author:
stoecker
Message:

fixed naming

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ntripclient/makefile

    r466 r472  
    33# fixable. There is nothing special at this source.
    44
    5 NtripLinuxClient: NtripLinuxClient.c
     5ntripclient: NtripLinuxClient.c
    66        $(CC) -Wall -W -O3 $? -o $@
    77
  • trunk/ntripserver/NtripLinuxServer.c

    r471 r472  
    11/*
    2  * $Id: NtripLinuxServer.c,v 1.30 2007/06/06 14:56:59 stoecker Exp $
     2 * $Id: NtripLinuxServer.c,v 1.31 2007/06/06 15:11:54 stoecker Exp $
    33 *
    44 * Copyright (c) 2003...2007
     
    3737
    3838/* CVS revision and version */
    39 static char revisionstr[] = "$Revision: 1.30 $";
    40 static char datestr[]     = "$Date: 2007/06/06 14:56:59 $";
     39static char revisionstr[] = "$Revision: 1.31 $";
     40static char datestr[]     = "$Date: 2007/06/06 15:11:54 $";
    4141
    4242#include <ctype.h>
     
    7373enum OUTMODE { HTTP = 1, RTSP = 2, NTRIPV1 = 3, END };
    7474
    75 #define AGENTSTRING     "NTRIP NtripServerLinux"
     75#define AGENTSTRING     "NTRIP NtripLinuxServer"
    7676#define BUFSZ           1024
    7777#define SZ              64
  • trunk/ntripserver/makefile

    r469 r472  
    11#!/bin/make
    22
    3 NtripServerLinux: NtripLinuxServer.c
     3ntripserver: NtripLinuxServer.c
    44        $(CC) -Wall -W -O3 $? -DNDEBUG -o $@
    55
    66debug: NtripLinuxServer.c
    7         $(CC) -Wall -W -O3 $? -o NtripServerLinux
     7        $(CC) -Wall -W -O3 $? -o ntripserver
    88
    99clean:
Note: See TracChangeset for help on using the changeset viewer.