2020-09-06 08:59:52 -04:00
|
|
|
CC = cc
|
|
|
|
CXX = c++
|
2024-01-29 11:16:29 -05:00
|
|
|
CFLAGS = -g -O3 -Wall -DHAVE_LOG_H -std=c++0x -pthread
|
2016-10-10 16:59:30 -04:00
|
|
|
LIBS = -lpthread
|
|
|
|
LDFLAGS = -g
|
|
|
|
|
2020-11-04 06:50:57 -05:00
|
|
|
OBJECTS = Conf.o DMRLookup.o Log.o Mutex.o P25Gateway.o P25Network.o Reflectors.o RptNetwork.o StopWatch.o Thread.o Timer.o UDPSocket.o Utils.o Voice.o
|
2016-10-10 16:59:30 -04:00
|
|
|
|
|
|
|
all: P25Gateway
|
|
|
|
|
2024-04-22 09:12:04 -04:00
|
|
|
P25Gateway: GitVersion.h $(OBJECTS)
|
2016-10-10 16:59:30 -04:00
|
|
|
$(CXX) $(OBJECTS) $(CFLAGS) $(LIBS) -o P25Gateway
|
|
|
|
|
|
|
|
%.o: %.cpp
|
|
|
|
$(CXX) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2024-04-22 09:12:04 -04:00
|
|
|
P25Gateway.o: GitVersion.h FORCE
|
|
|
|
|
|
|
|
.PHONY: GitVersion.h
|
|
|
|
|
|
|
|
FORCE:
|
|
|
|
|
|
|
|
|
2020-06-25 05:09:06 -04:00
|
|
|
install:
|
|
|
|
install -m 755 P25Gateway /usr/local/bin/
|
|
|
|
|
2016-10-10 16:59:30 -04:00
|
|
|
clean:
|
|
|
|
$(RM) P25Gateway *.o *.d *.bak *~
|
2024-04-22 09:12:04 -04:00
|
|
|
|
|
|
|
# Export the current git version if the index file exists, else 000...
|
|
|
|
GitVersion.h:
|
|
|
|
ifneq ("$(wildcard ../.git/index)","")
|
|
|
|
echo "const char *gitversion = \"$(shell git rev-parse HEAD)\";" > $@
|
|
|
|
else
|
|
|
|
echo "const char *gitversion = \"0000000000000000000000000000000000000000\";" > $@
|
|
|
|
endif
|
|
|
|
|