22 lines
416 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: $(OBJECTS)
$(CXX) $(OBJECTS) $(CFLAGS) $(LIBS) -o P25Parrot
%.o: %.cpp
$(CXX) $(CFLAGS) -c -o $@ $<
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 *~