1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 01:17:46 +00:00

Introduce LibCore and move GElapsedTimer => CElapsedTimer.

I need a layer somewhere between AK (usable both by userspace and kernel)
and LibGUI (usable by userspace except WindowServer.) So here's LibCore.
This commit is contained in:
Andreas Kling 2019-04-10 16:14:44 +02:00
parent a74f3615ac
commit 5e0577a042
21 changed files with 98 additions and 37 deletions

View file

@ -98,7 +98,7 @@ CXXFLAGS = -MMD -MP $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(FLAVOR_FLAGS) $(ARC
CXX = i686-pc-serenity-g++
LD = i686-pc-serenity-g++
AR = i686-pc-serenity-r
LDFLAGS = -L ../LibC
LDFLAGS = -L../LibC -L../LibCore -L../LibGUI
all: $(OBJS) $(APPS)
@ -169,13 +169,13 @@ more: more.o
$(LD) -o $@ $(LDFLAGS) $< -lc
guitest2: guitest2.o
$(LD) -o $@ $(LDFLAGS) -L../LibGUI $< -lgui -lc
$(LD) -o $@ $(LDFLAGS) $< -lgui -lcore -lc
sysctl: sysctl.o
$(LD) -o $@ $(LDFLAGS) $< -lc
pape: pape.o
$(LD) -o $@ $(LDFLAGS) -L../LibGUI $< -lgui -lc
$(LD) -o $@ $(LDFLAGS) $< -lgui -lcore -lc
cp: cp.o
$(LD) -o $@ $(LDFLAGS) $< -lc
@ -223,10 +223,10 @@ host: host.o
$(LD) -o $@ $(LDFLAGS) $< -lc
qs: qs.o
$(LD) -o $@ $(LDFLAGS) -L../LibGUI $< -lgui -lc
$(LD) -o $@ $(LDFLAGS) $< -lgui -lcore -lc
mv: mv.o
$(LD) -o $@ $(LDFLAGS) -L../LibGUI $< -lgui -lc
$(LD) -o $@ $(LDFLAGS) $< -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<