Libraries: Create top level directory for libraries.
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
This commit is contained in:
parent
63814ffebf
commit
04b9dc2d30
Notes:
sideshowbarker
2024-07-19 13:23:26 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/04b9dc2d30c
328 changed files with 36 additions and 36 deletions
Kernel
Libraries/LibC
MakefileSharedBuffer.cppSharedBuffer.halloca.h
arpa
assert.cppassert.hcrt0.cppcrti.Scrtn.Sctype.cppctype.hdirent.cppdirent.hdlfcn.cppdlfcn.hendian.herrno.herrno_numbers.hfcntl.cppfcntl.hfd_set.hfloat.hgetopt.cppgetopt.hgrp.cppgrp.hiconv.hinstall.shinttypes.hioctl.cpplimits.hlocale.cpplocale.hmalloc.cppmallocdefs.hmemory.hmman.cppmman.hmntent.cppmntent.hnetdb.cppnetdb.hnetinet
poll.cpppoll.hpthread.hpwd.cpppwd.hqsort.cppscanf.cppsched.cppsched.hserenity.hsetjmp.Ssetjmp.hsignal.cppsignal.hsignal_numbers.hstat.cppstdarg.hstdbool.hstddef.hstdint.hstdio.cppstdio.hstdlib.cppstdlib.hstring.cppstring.hstrings.cppstrings.hsys
cdefs.hfile.hioctl.hioctl_numbers.hmman.hparam.hresource.hselect.cppselect.hsocket.cppsocket.hstat.hsysmacros.htime.htimes.htypes.huio.cppuio.hun.hutsname.hwait.cppwait.h
termcap.cpptermcap.h
|
@ -87,7 +87,7 @@ cp ../Servers/LookupServer/LookupServer mnt/bin/LookupServer
|
|||
cp ../Servers/SystemServer/SystemServer mnt/bin/SystemServer
|
||||
cp ../Servers/WindowServer/WindowServer mnt/bin/WindowServer
|
||||
cp ../Shell/Shell mnt/bin/Shell
|
||||
cp ../LibHTML/tho mnt/bin/tho
|
||||
cp ../Libraries/LibHTML/tho mnt/bin/tho
|
||||
echo "done"
|
||||
|
||||
echo -n "installing shortcuts... "
|
||||
|
|
|
@ -14,14 +14,14 @@ fi
|
|||
make_cmd="make -j $MAKEJOBS"
|
||||
|
||||
build_targets=""
|
||||
build_targets="$build_targets ../LibC"
|
||||
build_targets="$build_targets ../LibM"
|
||||
build_targets="$build_targets ../LibCore"
|
||||
build_targets="$build_targets ../Libraries/LibC"
|
||||
build_targets="$build_targets ../Libraries/LibM"
|
||||
build_targets="$build_targets ../Libraries/LibCore"
|
||||
build_targets="$build_targets ../Servers/SystemServer"
|
||||
build_targets="$build_targets ../Servers/LookupServer"
|
||||
build_targets="$build_targets ../Servers/WindowServer"
|
||||
build_targets="$build_targets ../LibGUI"
|
||||
build_targets="$build_targets ../LibHTML"
|
||||
build_targets="$build_targets ../Libraries/LibGUI"
|
||||
build_targets="$build_targets ../Libraries/LibHTML"
|
||||
build_targets="$build_targets ../Userland"
|
||||
build_targets="$build_targets ../Applications/Terminal"
|
||||
build_targets="$build_targets ../Applications/FontEditor"
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
include ../Makefile.common
|
||||
include ../../Makefile.common
|
||||
|
||||
AK_OBJS = \
|
||||
../AK/StringImpl.o \
|
||||
../AK/String.o \
|
||||
../AK/StringView.o \
|
||||
../AK/StringBuilder.o \
|
||||
../AK/FileSystemPath.o \
|
||||
../AK/StdLibExtras.o \
|
||||
../AK/JsonValue.o \
|
||||
../AK/JsonArray.o \
|
||||
../AK/JsonObject.o \
|
||||
../AK/JsonParser.o \
|
||||
../AK/LogStream.o \
|
||||
../AK/MappedFile.o
|
||||
../../AK/StringImpl.o \
|
||||
../../AK/String.o \
|
||||
../../AK/StringView.o \
|
||||
../../AK/StringBuilder.o \
|
||||
../../AK/FileSystemPath.o \
|
||||
../../AK/StdLibExtras.o \
|
||||
../../AK/JsonValue.o \
|
||||
../../AK/JsonArray.o \
|
||||
../../AK/JsonObject.o \
|
||||
../../AK/JsonParser.o \
|
||||
../../AK/LogStream.o \
|
||||
../../AK/MappedFile.o
|
||||
|
||||
LIBC_OBJS = \
|
||||
SharedBuffer.o \
|
|
@ -1,5 +1,5 @@
|
|||
#include <AK/kmalloc.h>
|
||||
#include <LibC/SharedBuffer.h>
|
||||
#include <SharedBuffer.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue