diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-23 23:43:37 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-23 23:43:37 +0100 |
commit | 35c26a06fcea1c720b2e2e2ea5744eb0014b37bc (patch) | |
tree | 83faa1b46ecc18f9ab26de1e4087ab671bca4e6f /Servers | |
parent | 600c15aa3a0f0a0c8acca1b0350ef387c0e7ed1b (diff) | |
download | serenity-35c26a06fcea1c720b2e2e2ea5744eb0014b37bc.zip |
LibCore: Move puff() from LibDraw to LibCore
Since it's used both by CGzip and PNGLoader, it seems most appropriate
to keep this in LibCore.
Diffstat (limited to 'Servers')
-rw-r--r-- | Servers/ProtocolServer/Makefile | 2 | ||||
-rw-r--r-- | Servers/WindowServer/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Servers/ProtocolServer/Makefile b/Servers/ProtocolServer/Makefile index 3e84b1f12f..ba66275513 100644 --- a/Servers/ProtocolServer/Makefile +++ b/Servers/ProtocolServer/Makefile @@ -23,7 +23,7 @@ ProtocolClientEndpoint.h: ProtocolClient.ipc @echo "IPC $<"; $(IPCCOMPILER) $< > $@ $(APP): $(OBJS) - $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore -lipc -ldraw + $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore -lipc .cpp.o: @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $< diff --git a/Servers/WindowServer/Makefile b/Servers/WindowServer/Makefile index da66886329..f731caa25b 100644 --- a/Servers/WindowServer/Makefile +++ b/Servers/WindowServer/Makefile @@ -26,7 +26,7 @@ DEFINES += -DUSERLAND all: $(APP) $(APP): $(OBJS) - $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore -ldraw -lthread -lpthread -laudio -lipc + $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -ldraw -lcore -lthread -lpthread -laudio -lipc .cpp.o: @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $< |