Create Project for repo.or.cz
[vp.git] / src / jitter / Makefile
blob1378c3ebf3ca70937d723f0feeeb8d49440e8824
2 ################################################################################
3 # Rules
4 ################################################################################
5 include $(TOP_DIR)/Rules
8 ################################################################################
9 # Source and Target
10 ################################################################################
11 TARGET = jitter.o
13 SRCS = JitterBuffer.cpp
14 LIBS =
16 OBJS = $(patsubst %.cpp,%.o,$(SRCS))
17 DEPS = $(patsubst %.cpp,.%.d,$(SRCS))
20 ################################################################################
21 # All rule
22 ################################################################################
23 .PHONY: all clean
24 all: $(TARGET)
27 ################################################################################
28 # Target rule
29 ################################################################################
30 $(TARGET): $(DEPS) $(OBJS) $(LIBS)
31 @echo " LD $@"
32 @$(LD) -i -o $@ $(OBJS)
35 ################################################################################
36 # Depend rule
37 ################################################################################
38 sinclude $(DEPS)
41 ################################################################################
42 # Clean rule
43 ################################################################################
44 clean:
45 @echo " CLEAN"
46 @rm $(DEPS) $(OBJS) $(TARGET) -f