From 1de37086ef3f9908813cd98b335fa24743e6c839 Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Tue, 13 Dec 2011 09:09:08 +0100 Subject: [PATCH] Rename the main program to something better sounding. --- makefile | 8 ++++---- linuxptp.c => ptp4l.c | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename linuxptp.c => ptp4l.c (100%) diff --git a/makefile b/makefile index fb77665..222d8a6 100644 --- a/makefile +++ b/makefile @@ -23,8 +23,8 @@ INC = -I$(KBUILD_OUTPUT)/usr/include CFLAGS = -Wall $(INC) $(DEBUG) LDFLAGS = LDLIBS = -lm -lrt -PRG = linuxptp -OBJ = bmc.o clock.o fsm.o linuxptp.o mave.o msg.o phc.o pi.o port.o \ +PRG = ptp4l +OBJ = bmc.o clock.o fsm.o ptp4l.o mave.o msg.o phc.o pi.o port.o \ print.o servo.o tmtab.o transport.o udp.o util.o SRC = $(OBJ:.o=.c) @@ -32,9 +32,9 @@ DEPEND = $(OBJ:.o=.d) srcdir := $(dir $(lastword $(MAKEFILE_LIST))) VPATH = $(srcdir) -all: linuxptp +all: ptp4l -linuxptp: $(OBJ) +ptp4l: $(OBJ) clean: rm -f $(OBJ) $(DEPEND) diff --git a/linuxptp.c b/ptp4l.c similarity index 100% rename from linuxptp.c rename to ptp4l.c