fixing makefile to not get warnings about missing dependencies files

git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1198 8eb893ce-cfd4-0310-b710-fb5ebe64c474
sayer/1.4-spce2.6
Stefan Sayer 18 years ago
parent cbd9fddf0e
commit 756caa8372

@ -37,7 +37,7 @@ include ../Makefile.audio_module
$(ILBC_DIR)/libilbc.a:
# -@cd $(ILBC_DIR); $(MAKE) all
$(MAKE) -C $(ILBC_DIR) libilbc.a
$(MAKE) -C $(ILBC_DIR)
.PHONY: clean_ilbclib
clean_ilbclib:

@ -1,7 +1,11 @@
COREPATH ?=../../..
lib_name = libilbc.a
.PHONY: all
all: $(lib_name)
include $(COREPATH)/../Makefile.defs
lib_name = libilbc.a
srcs = $(wildcard *.c)
hrds = $(wildcard *.h)
@ -11,8 +15,6 @@ depends = $(srcs:.c=.d)
AR = ar
RANLIB = ranlib
.PHONY: all
all: $(lib_name)
.PHONY: clean
clean:

Loading…
Cancel
Save