Author: sayer Date: 2008-12-15 17:18:02 +0100 (Mon, 15 Dec 2008) New Revision: 1198
Modified: trunk/core/plug-in/ilbc/Makefile trunk/core/plug-in/ilbc/iLBC_rfc3951/Makefile Log: fixing makefile to not get warnings about missing dependencies files Modified: trunk/core/plug-in/ilbc/Makefile =================================================================== --- trunk/core/plug-in/ilbc/Makefile 2008-12-10 14:33:16 UTC (rev 1197) +++ trunk/core/plug-in/ilbc/Makefile 2008-12-15 16:18:02 UTC (rev 1198) @@ -37,7 +37,7 @@ $(ILBC_DIR)/libilbc.a: # -...@cd $(ILBC_DIR); $(MAKE) all - $(MAKE) -C $(ILBC_DIR) libilbc.a + $(MAKE) -C $(ILBC_DIR) .PHONY: clean_ilbclib clean_ilbclib: Modified: trunk/core/plug-in/ilbc/iLBC_rfc3951/Makefile =================================================================== --- trunk/core/plug-in/ilbc/iLBC_rfc3951/Makefile 2008-12-10 14:33:16 UTC (rev 1197) +++ trunk/core/plug-in/ilbc/iLBC_rfc3951/Makefile 2008-12-15 16:18:02 UTC (rev 1198) @@ -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 @@ AR = ar RANLIB = ranlib -.PHONY: all -all: $(lib_name) .PHONY: clean clean: _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
