P25Clients/P25Parrot/Makefile

19 lines
359 B
Makefile
Raw Normal View History

2016-10-03 16:57:14 -04:00
CC = gcc
CXX = g++
CFLAGS = -g -O3 -Wall -std=c++0x
LIBS =
LDFLAGS = -g
2016-10-18 02:47:37 -04:00
OBJECTS = Log.o Network.o P25Parrot.o Parrot.o StopWatch.o Thread.o Timer.o UDPSocket.o Utils.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 $@ $<
clean:
$(RM) P25Parrot *.o *.d *.bak *~