mirror of
https://github.com/RGBCube/serenity
synced 2026-01-12 23:01:01 +00:00
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)
|