mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
f4418361c4
functrace traces the function calls a program makes. It's like strace, but for userspace. It works by using Debugging functionality to insert breakpoints at call&ret instructions.
18 lines
342 B
Makefile
18 lines
342 B
Makefile
SRCS = $(wildcard *.cpp)
|
|
OBJS = ${SRCS:.cpp=.o}
|
|
APPS = ${SRCS:.cpp=}
|
|
|
|
EXTRA_CLEAN = $(APPS)
|
|
|
|
LIB_DEPS = Web 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)
|