mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Editor: Fix build on Linux.
This commit is contained in:
parent
5d7ba9640c
commit
e03d341615
Notes:
sideshowbarker
2024-07-19 16:08:08 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/e03d3416151
1 changed files with 7 additions and 6 deletions
|
@ -6,15 +6,16 @@ OBJS = \
|
|||
FileReader.o \
|
||||
Editor.o \
|
||||
main.o \
|
||||
InsertOperation.o \
|
||||
Operation.o \
|
||||
UndoStack.o
|
||||
InsertOperation.o \
|
||||
Operation.o \
|
||||
UndoStack.o
|
||||
|
||||
CXXFLAGS = -Os -std=c++1z -W -Wall -g -I../AK
|
||||
LDFLAGS = -lncurses
|
||||
CXX = g++
|
||||
CXXFLAGS = -O2 -std=c++1z -W -Wall -g -I../AK
|
||||
LIBS = -lncurses
|
||||
|
||||
$(BINARY): $(OBJS)
|
||||
$(CXX) $(LDFLAGS) -o $@ $(OBJS)
|
||||
$(CXX) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
|
||||
|
||||
all: $(BINARY)
|
||||
|
||||
|
|
Loading…
Reference in a new issue