mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
c7ea94697e
We've been using a per-directory "install.sh" for some time, so let's get rid of the old way of doing things.
21 lines
347 B
Makefile
21 lines
347 B
Makefile
include ../../Makefile.common
|
|
|
|
OBJS = \
|
|
AClientConnection.o \
|
|
AWavLoader.o
|
|
|
|
LIBRARY = libaudio.a
|
|
DEFINES += -DUSERLAND
|
|
|
|
all: $(LIBRARY)
|
|
|
|
$(LIBRARY): $(OBJS)
|
|
@echo "LIB $@"; $(AR) rcs $@ $(OBJS) $(LIBS)
|
|
|
|
.cpp.o:
|
|
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
|
|
|
|
-include $(OBJS:%.o=%.d)
|
|
|
|
clean:
|
|
@echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d
|