summaryrefslogtreecommitdiff
path: root/Libraries/LibProtocol
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-05-08 21:57:44 +0200
committerAndreas Kling <kling@serenityos.org>2020-05-08 21:57:44 +0200
commitcf3b58fbe8f836c13e44d6152d78960aff6089ef (patch)
treedcc7664f0004ee9c495f9d948cfb16d12f8a70bf /Libraries/LibProtocol
parent042b1f68145ad3754fd98429b405c5c1a173d3fc (diff)
downloadserenity-cf3b58fbe8f836c13e44d6152d78960aff6089ef.zip
Services: Renamed from Servers
It didn't feel right to have a "DHCPClient" in a "Servers" directory. Rename this to Services to better reflect the type of programs we'll be putting in there.
Diffstat (limited to 'Libraries/LibProtocol')
-rw-r--r--Libraries/LibProtocol/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibProtocol/Makefile b/Libraries/LibProtocol/Makefile
index 05714ffb88..00b3605fb6 100644
--- a/Libraries/LibProtocol/Makefile
+++ b/Libraries/LibProtocol/Makefile
@@ -4,8 +4,8 @@ OBJS = \
LIBRARY = libprotocol.a
-Download.cpp Client.cpp: ../../Servers/ProtocolServer/ProtocolClientEndpoint.h ../../Servers/ProtocolServer/ProtocolServerEndpoint.h
-../../Servers/ProtocolServer/ProtocolClientEndpoint.h ../../Servers/ProtocolServer/ProtocolServerEndpoint.h:
+Download.cpp Client.cpp: ../../Services/ProtocolServer/ProtocolClientEndpoint.h ../../Services/ProtocolServer/ProtocolServerEndpoint.h
+../../Services/ProtocolServer/ProtocolClientEndpoint.h ../../Services/ProtocolServer/ProtocolServerEndpoint.h:
@flock $(dir $(@)) $(MAKE) -C $(dir $(@))
include ../../Makefile.common