1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

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.
This commit is contained in:
Andreas Kling 2019-11-23 23:43:37 +01:00
parent 600c15aa3a
commit 35c26a06fc
6 changed files with 6 additions and 7 deletions

View file

@ -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 $<