mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 00:27:35 +00:00
Editor: Fix build on Linux.
This commit is contained in:
parent
5d7ba9640c
commit
e03d341615
1 changed files with 7 additions and 6 deletions
|
@ -10,11 +10,12 @@ OBJS = \
|
|||
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…
Add table
Add a link
Reference in a new issue