summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-10 16:14:44 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-10 16:14:44 +0200
commit5e0577a04223e265a7f93d46598ff1c0070ce6bb (patch)
treebb89ce18b4777aa11024dae901d292aaf3fb5209 /Userland
parenta74f3615ac810384841c94de82d0569d7e85be25 (diff)
downloadserenity-5e0577a04223e265a7f93d46598ff1c0070ce6bb.zip
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.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Userland/Makefile b/Userland/Makefile
index 66707b88a0..3235ec5f82 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -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 $<