From cd6ad266b58cfd2eeadb3c08422da4d4bff7509e Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Thu, 5 May 2005 17:39:18 +0000 Subject: Build as a single executable, work around Makefile issue git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5590 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- funcs/Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'funcs') diff --git a/funcs/Makefile b/funcs/Makefile index c0be12574..dc40cbf44 100755 --- a/funcs/Makefile +++ b/funcs/Makefile @@ -23,25 +23,27 @@ FUNC_STRUCTS=$(shell grep 'struct ast_custom_function' $(BUILTINS:.o=.c) | awk ' CFLAGS+=-fPIC +FUNC_SOURCES=$(BUILTINS:.o=.c) + all: $(FUNCS) clean: - rm -f *.so *.o .depend + rm -f *.so *.o .depend pbx_functions.h %.so : %.o $(CC) $(SOLINK) -o $@ $< -$(BUILTINS) : CFLAGS += -DBUILTIN_FUNC +#$(BUILTINS) : CFLAGS += -DBUILTIN_FUNC pbx_functions.h: $(BUILTINS:.o=.c) @echo "/* Automatically generated - do not edit */" > $@ - @for f in $(FUNC_STRUCTS); do echo "extern struct ast_custom_function $$f;" >> $@; done + @for f in $(FUNC_SOURCES); do echo "#include \"$$f\"" >> $@; done @echo "static struct ast_custom_function *builtins[] = {" >> $@ @for f in $(FUNC_STRUCTS); do echo "&$$f," >> $@; done @echo "};" >> $@ -pbx_functions.so: pbx_functions.o $(BUILTINS) - $(CC) $(SOLINK) -o $@ $(BUILTINS) $< +pbx_functions.so: pbx_functions.o #$(BUILTINS) + $(CC) $(SOLINK) -o $@ $< strip $(foreach f,$(FUNC_STRUCTS),-N $(f)) $@ install: all -- cgit v1.2.3