From 5e0577a04223e265a7f93d46598ff1c0070ce6bb Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 10 Apr 2019 16:14:44 +0200 Subject: 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. --- Applications/About/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Applications/About') diff --git a/Applications/About/Makefile b/Applications/About/Makefile index b656c4bc66..19612e3f20 100644 --- a/Applications/About/Makefile +++ b/Applications/About/Makefile @@ -14,12 +14,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 $< -- cgit v1.2.3