mirror of
https://github.com/brendanhaines/RasPi.git
synced 2025-08-02 05:44:41 -06:00
Adds TCP/IP stuff
This commit is contained in:
12
TCP/Makefile
Normal file
12
TCP/Makefile
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
Reference in New Issue
Block a user