diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-10 20:41:31 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-10 20:41:31 +0200 |
commit | 2d3293dfbd085da013e65f3c001cc5be07a01eaa (patch) | |
tree | 9a9655409f7700f3761147175ac41a6a069f1f16 /DevTools/FormCompiler/Makefile | |
parent | 69fea8d41de09ea55221a4c1951bc5248ff09739 (diff) | |
download | serenity-2d3293dfbd085da013e65f3c001cc5be07a01eaa.zip |
FormCompiler: Start working on a C++ code generator for VisualBuilder forms.
Diffstat (limited to 'DevTools/FormCompiler/Makefile')
-rw-r--r-- | DevTools/FormCompiler/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/DevTools/FormCompiler/Makefile b/DevTools/FormCompiler/Makefile new file mode 100644 index 0000000000..497bdacf9a --- /dev/null +++ b/DevTools/FormCompiler/Makefile @@ -0,0 +1,28 @@ +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) |