Skip to content

Commit adc91d9

Browse files
committed
Userland: Oops, that merge broke the build, just needed a few tweaks. :^)
1 parent 16ef751 commit adc91d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Userland/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ INCLUDE_FLAGS = -I.. -I. -I../LibC
1212
DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
1313

1414
CXXFLAGS = -MMD -MP $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(FLAVOR_FLAGS) $(ARCH_FLAGS) $(STANDARD_FLAGS) $(INCLUDE_FLAGS) $(DEFINES)
15-
CXX = i686-pca-serenity-g++
15+
CXX = i686-pc-serenity-g++
1616
LD = i686-pc-serenity-g++
1717
AR = i686-pc-serenity-r
1818
LDFLAGS = -L../LibC -L../LibCore -L../LibGUI
@@ -30,7 +30,7 @@ clean:
3030

3131
$(APPS) : % : %.o $(OBJS)
3232
@echo "LD $<"
33-
@$(LD) -o $@ $(LDFLAGS) $< -lc
33+
@$(LD) -o $@ $(LDFLAGS) $< -lc -lgui -lcore
3434

3535
%.o: %.cpp
3636
@echo "CXX $<"

0 commit comments

Comments
 (0)