mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 21:59:21 +00:00
29 lines
702 B
Makefile
29 lines
702 B
Makefile
PROGRAM = FormCompiler
|
|
|
|
SOURCES = \
|
|
main.cpp \
|
|
../../AK/String.cpp \
|
|
../../AK/StringImpl.cpp \
|
|
../../AK/StringBuilder.cpp \
|
|
../../AK/StringView.cpp \
|
|
../../AK/JsonObject.cpp \
|
|
../../AK/JsonValue.cpp \
|
|
../../AK/JsonArray.cpp \
|
|
../../AK/JsonParser.cpp \
|
|
../../AK/LogStream.cpp \
|
|
../../Libraries/LibCore/CIODevice.cpp \
|
|
../../Libraries/LibCore/CFile.cpp \
|
|
../../Libraries/LibCore/CObject.cpp \
|
|
../../Libraries/LibCore/CEvent.cpp \
|
|
../../Libraries/LibCore/CEventLoop.cpp
|
|
|
|
all: $(PROGRAM)
|
|
|
|
CXXFLAGS = -std=c++17 -Wall -Wextra
|
|
|
|
$(PROGRAM): $(SOURCES)
|
|
$(CXX) $(CXXFLAGS) -I../ -I../../ -I../../Libraries/ -o $@ $(SOURCES)
|
|
|
|
clean:
|
|
rm -f $(PROGRAM)
|