mirror of
https://github.com/ShaYmez/P25Clients.git
synced 2024-11-05 19:01:19 -05:00
19 lines
350 B
Makefile
19 lines
350 B
Makefile
CC = gcc
|
|
CXX = g++
|
|
CFLAGS = -g -O3 -Wall -std=c++0x
|
|
LIBS =
|
|
LDFLAGS = -g
|
|
|
|
OBJECTS = Log.o Network.o P25Parrot.o Parrot.o StopWatch.o Timer.o UDPSocket.o Utils.o
|
|
|
|
all: P25Parrot
|
|
|
|
P25Parrot: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) $(CFLAGS) $(LIBS) -o P25Parrot
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -c -o $@ $<
|
|
|
|
clean:
|
|
$(RM) P25Parrot *.o *.d *.bak *~
|