You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
345 B
19 lines
345 B
CC = gcc
|
|
CXX = g++
|
|
CFLAGS = -g -O3 -Wall -std=c++0x
|
|
LIBS =
|
|
LDFLAGS = -g
|
|
|
|
OBJECTS = Network.o Parrot.o StopWatch.o Timer.o UDPSocket.o Utils.o YSFParrot.o
|
|
|
|
all: YSFParrot
|
|
|
|
YSFParrot: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) $(CFLAGS) $(LIBS) -o YSFParrot
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -c -o $@ $<
|
|
|
|
clean:
|
|
$(RM) YSFParrot *.o *.d *.bak *~
|
|
|