1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 01:27:42 +00:00
serenity/DevTools/FormCompiler/Makefile
howar6hill 055344f346 AK: Move the wildcard-matching implementation to StringUtils
Provide wrappers in the String and StringView classes, and add some tests.
2020-03-02 10:38:08 +01:00

25 lines
680 B
Makefile

USE_HOST_CXX = 1
PROGRAM = FormCompiler
OBJS = \
main.o \
../../AK/String.o \
../../AK/StringImpl.o \
../../AK/StringBuilder.o \
../../AK/StringView.o \
../../AK/StringUtils.o \
../../AK/JsonValue.o \
../../AK/JsonParser.o \
../../AK/LogStream.o \
../../Libraries/LibCore/IODevice.o \
../../Libraries/LibCore/File.o \
../../Libraries/LibCore/Object.o \
../../Libraries/LibCore/Event.o \
../../Libraries/LibCore/Socket.o \
../../Libraries/LibCore/LocalSocket.o \
../../Libraries/LibCore/LocalServer.o \
../../Libraries/LibCore/Notifier.o \
../../Libraries/LibCore/EventLoop.o
include ../../Makefile.common