mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-02 04:20:28 +00:00
Userland: Oops, that merge broke the build, just needed a few tweaks. :^)
This commit is contained in:
parent
16ef7517c4
commit
adc91d92a3
Notes:
sideshowbarker
2024-07-19 14:42:37 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/adc91d92a31
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ INCLUDE_FLAGS = -I.. -I. -I../LibC
|
|||
DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
|
||||
|
||||
CXXFLAGS = -MMD -MP $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(FLAVOR_FLAGS) $(ARCH_FLAGS) $(STANDARD_FLAGS) $(INCLUDE_FLAGS) $(DEFINES)
|
||||
CXX = i686-pca-serenity-g++
|
||||
CXX = i686-pc-serenity-g++
|
||||
LD = i686-pc-serenity-g++
|
||||
AR = i686-pc-serenity-r
|
||||
LDFLAGS = -L../LibC -L../LibCore -L../LibGUI
|
||||
|
@ -30,7 +30,7 @@ clean:
|
|||
|
||||
$(APPS) : % : %.o $(OBJS)
|
||||
@echo "LD $<"
|
||||
@$(LD) -o $@ $(LDFLAGS) $< -lc
|
||||
@$(LD) -o $@ $(LDFLAGS) $< -lc -lgui -lcore
|
||||
|
||||
%.o: %.cpp
|
||||
@echo "CXX $<"
|
||||
|
|
Loading…
Reference in a new issue