YSFClients/YSFParrot/Makefile

19 lines
360 B
Makefile
Raw Normal View History

2016-05-19 18:36:54 +02:00
CC = gcc
CXX = g++
CFLAGS = -g -O3 -Wall -std=c++0x
LIBS =
LDFLAGS = -g
2016-10-18 08:55:01 +02:00
OBJECTS = Log.o Network.o Parrot.o StopWatch.o Thread.o Timer.o UDPSocket.o Utils.o YSFParrot.o
2016-05-19 18:36:54 +02:00
all: YSFParrot
YSFParrot: $(OBJECTS)
$(CXX) $(OBJECTS) $(CFLAGS) $(LIBS) -o YSFParrot
%.o: %.cpp
$(CXX) $(CFLAGS) -c -o $@ $<
clean:
$(RM) YSFParrot *.o *.d *.bak *~