mirror of
https://github.com/RGBCube/serenity
synced 2026-01-16 17:51:00 +00:00
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.
11 lines
385 B
Makefile
11 lines
385 B
Makefile
OBJS = \
|
|
Download.o \
|
|
Client.o
|
|
|
|
LIBRARY = libprotocol.a
|
|
|
|
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
|