RasPi/TCP/Makefile
2015-01-09 13:21:07 -07:00

13 lines
239 B
Makefile

all: TCPserver.o TCPserverExample
HDRS = TCPserver.h
CXXFLAGS = -Wall
TCPserver.o TCPserverExample.o: $(HDRS)
TCPserverExample: TCPserver.o TCPserverExample.o
$(CXX) $^ -o $@
clean:
rm TCPserver.o TCPserverExample.o TCPserverExample