19 lines
364 B
Makefile
Raw Permalink Normal View History

2016-10-03 21:57:14 +01:00
CC = gcc
CXX = g++
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 $@ $<
clean:
$(RM) P25Parrot *.o *.d *.bak *~