38 lines
785 B
Makefile
Raw Normal View History

2020-09-06 13:59:52 +01:00
CC = cc
CXX = c++
2016-10-18 11:12:45 +01:00
CFLAGS = -g -O3 -Wall -std=c++0x -pthread
LIBS = -lpthread
2016-10-03 21:57:14 +01:00
LDFLAGS = -g
2018-01-29 22:26:51 +00:00
OBJECTS = Network.o P25Parrot.o Parrot.o StopWatch.o Thread.o Timer.o UDPSocket.o
2016-10-03 21:57:14 +01:00
all: P25Parrot
P25Parrot: GitVersion.h $(OBJECTS)
2016-10-03 21:57:14 +01:00
$(CXX) $(OBJECTS) $(CFLAGS) $(LIBS) -o P25Parrot
%.o: %.cpp
$(CXX) $(CFLAGS) -c -o $@ $<
P25Parrot.o: GitVersion.h FORCE
.PHONY: GitVersion.h
FORCE:
2020-06-25 10:09:06 +01:00
install:
install -m 755 P25Parrot /usr/local/bin/
2016-10-03 21:57:14 +01:00
clean:
$(RM) P25Parrot *.o *.d *.bak *~
# 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