2016-10-03 16:57:14 -04:00
|
|
|
CC = gcc
|
|
|
|
CXX = g++
|
2016-10-18 06:12:45 -04:00
|
|
|
CFLAGS = -g -O3 -Wall -std=c++0x -pthread
|
|
|
|
LIBS = -lpthread
|
2016-10-03 16:57:14 -04:00
|
|
|
LDFLAGS = -g
|
|
|
|
|
2018-01-29 17:26:51 -05:00
|
|
|
OBJECTS = Network.o P25Parrot.o Parrot.o StopWatch.o Thread.o Timer.o UDPSocket.o
|
2016-10-03 16:57:14 -04:00
|
|
|
|
|
|
|
all: P25Parrot
|
|
|
|
|
|
|
|
P25Parrot: $(OBJECTS)
|
|
|
|
$(CXX) $(OBJECTS) $(CFLAGS) $(LIBS) -o P25Parrot
|
|
|
|
|
|
|
|
%.o: %.cpp
|
|
|
|
$(CXX) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2020-06-25 05:09:06 -04:00
|
|
|
install:
|
|
|
|
install -m 755 P25Parrot /usr/local/bin/
|
|
|
|
|
2016-10-03 16:57:14 -04:00
|
|
|
clean:
|
|
|
|
$(RM) P25Parrot *.o *.d *.bak *~
|