Rename the main program to something better sounding.
parent
623add8303
commit
1de37086ef
8
makefile
8
makefile
|
@ -23,8 +23,8 @@ INC = -I$(KBUILD_OUTPUT)/usr/include
|
||||||
CFLAGS = -Wall $(INC) $(DEBUG)
|
CFLAGS = -Wall $(INC) $(DEBUG)
|
||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
LDLIBS = -lm -lrt
|
LDLIBS = -lm -lrt
|
||||||
PRG = linuxptp
|
PRG = ptp4l
|
||||||
OBJ = bmc.o clock.o fsm.o linuxptp.o mave.o msg.o phc.o pi.o port.o \
|
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
|
print.o servo.o tmtab.o transport.o udp.o util.o
|
||||||
|
|
||||||
SRC = $(OBJ:.o=.c)
|
SRC = $(OBJ:.o=.c)
|
||||||
|
@ -32,9 +32,9 @@ DEPEND = $(OBJ:.o=.d)
|
||||||
srcdir := $(dir $(lastword $(MAKEFILE_LIST)))
|
srcdir := $(dir $(lastword $(MAKEFILE_LIST)))
|
||||||
VPATH = $(srcdir)
|
VPATH = $(srcdir)
|
||||||
|
|
||||||
all: linuxptp
|
all: ptp4l
|
||||||
|
|
||||||
linuxptp: $(OBJ)
|
ptp4l: $(OBJ)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(OBJ) $(DEPEND)
|
rm -f $(OBJ) $(DEPEND)
|
||||||
|
|
Loading…
Reference in New Issue