summaryrefslogtreecommitdiff
path: root/funcs
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-05-05 17:39:18 +0000
committerMark Spencer <markster@digium.com>2005-05-05 17:39:18 +0000
commitcd6ad266b58cfd2eeadb3c08422da4d4bff7509e (patch)
tree64178e900e0a5c61e9cb62164b67c45cb568d7c6 /funcs
parent6b7677e842d5ba5646b3f8b1c30254161479d977 (diff)
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
Diffstat (limited to 'funcs')
-rwxr-xr-xfuncs/Makefile12
1 files changed, 7 insertions, 5 deletions
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