mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
e09b83c60c
We're starting with a very basic decoding API and only ISO-8859-1 and UTF-8 decoding (and UTF-8 decoding is really a no-op since String is expected to be UTF-8.)
18 lines
363 B
Makefile
18 lines
363 B
Makefile
SRCS = $(wildcard *.cpp)
|
|
OBJS = ${SRCS:.cpp=.o}
|
|
APPS = ${SRCS:.cpp=}
|
|
|
|
EXTRA_CLEAN = $(APPS)
|
|
|
|
LIB_DEPS = Crypto TLS Web TextCodec GUI Gfx Audio Protocol IPC Thread Pthread PCIDB Markdown JS Core Line X86 Debug
|
|
|
|
include ../Makefile.common
|
|
|
|
all: $(APPS)
|
|
|
|
list:
|
|
@echo $(APPS)
|
|
|
|
$(APPS): %: %.o $(STATIC_LIB_DEPS)
|
|
@echo "LINK $@"
|
|
$(QUIET) $(CXX) -o $@ $< $(LDFLAGS)
|