summaryrefslogtreecommitdiff
path: root/Applications/FileManager
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 /Applications/FileManager
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 'Applications/FileManager')
-rw-r--r--Applications/FileManager/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/FileManager/Makefile b/Applications/FileManager/Makefile
index 5da4851114..5b94becf18 100644
--- a/Applications/FileManager/Makefile
+++ b/Applications/FileManager/Makefile
@@ -16,12 +16,12 @@ DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
CXXFLAGS = -MMD -MP $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(FLAVOR_FLAGS) $(STANDARD_FLAGS) $(INCLUDE_FLAGS) $(DEFINES)
CXX = i686-pc-serenity-g++
LD = i686-pc-serenity-g++
-LDFLAGS = -L../../LibC -L../../LibGUI
+LDFLAGS = -L../../LibC -L../../LibCore -L../../LibGUI
all: $(APP)
$(APP): $(OBJS)
- $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -lc
+ $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -lcore -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<