mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
8e684f0959
Fork the IPC Connection classes into Server:: and Client::ConnectionNG. The new IPC messages are serialized very snugly instead of using the same generic data structure for all messages. Remove ASAPI.h since we now generate all of it from AudioServer.ipc :^)
28 lines
434 B
Makefile
28 lines
434 B
Makefile
include ../Makefile.common
|
|
|
|
SRCS = $(wildcard *.cpp)
|
|
OBJS = ${SRCS:.cpp=.o}
|
|
APPS = ${SRCS:.cpp=}
|
|
|
|
DEFINES += -DUSERLAND
|
|
|
|
.PHONY: all list clean
|
|
|
|
all: $(OBJS) $(APPS)
|
|
|
|
list:
|
|
@echo $(APPS)
|
|
|
|
clean:
|
|
@echo "CLEAN"
|
|
@rm -f $(APPS) $(OBJS) *.d
|
|
|
|
$(APPS) : % : %.o $(OBJS)
|
|
@echo "LD $@"
|
|
@$(LD) -o $@ $(LDFLAGS) $< -lc -lgui -ldraw -laudio -lipc -lcore
|
|
|
|
%.o: %.cpp
|
|
@echo "CXX $<"
|
|
@$(CXX) $(CXXFLAGS) -o $@ -c $<
|
|
|
|
-include $(OBJS:%.o=%.d)
|