1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 01:27:42 +00:00
serenity/Libraries/LibCore/Makefile
Nicholas Hollett b7810a31c3 LibDesktop: Switch to LaunchServer for DesktopServices::open
Moves DirectoryServices out of LibCore (because we need to link with
LibIPC), renames it Desktop::Launcher (because Desktop::DesktopServices
doesn't scan right) and ports it to use the LaunchServer which is now
responsible for starting programs for a file.
2020-05-09 15:13:32 +02:00

37 lines
724 B
Makefile

OBJS = \
ArgsParser.o \
ConfigFile.o \
DateTime.o \
DirIterator.o \
ElapsedTimer.o \
Event.o \
EventLoop.o \
File.o \
Gzip.o \
IODevice.o \
LocalServer.o \
LocalSocket.o \
MimeData.o \
NetworkJob.o \
NetworkResponse.o \
Notifier.o \
Object.o \
ProcessStatisticsReader.o \
Socket.o \
SocketAddress.o \
StandardPaths.o \
TCPServer.o \
TCPSocket.o \
Timer.o \
UDPServer.o \
UDPSocket.o \
puff.o
LIBRARY = libcore.a
install:
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibCore/
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibCore/
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
include ../../Makefile.common