Skip to content

Commit 441acc4

Browse files
author
mardy
committed
Creating 4.2 branch.
git-svn-id: http://sipxecs.sipfoundry.org/rep/sipXecs/branches/4.2@18562 ab1d8caa-1f67-47f1-9e81-24633a41865c
0 parents  commit 441acc4

File tree

10,961 files changed

+1364459
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

10,961 files changed

+1364459
-0
lines changed

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# git-ls-files --others --exclude-from=.git/info/exclude
2+
# Lines that start with '#' are comments.
3+
# For a project mostly in C, the following would be a good set of
4+
# exclude patterns (uncomment them if you want to use them):
5+
# *.[oa]
6+
*~
7+
Makefile.in
8+
aclocal.m4
9+
config.h.in
10+
autom4te.cache
11+
config/compile
12+
config/config.guess
13+
config/config.sub
14+
config/depcomp
15+
config/install-sh
16+
config/ltmain.sh
17+
config/missing
18+
configure
19+
sipXconfig/top.build.dir
20+
spy.log
21+
velocity.log
22+
bin.eclipse
23+
# exclude files created when building 3rd party deps
24+
lib/*/build
25+
lib/cache-file
26+
lib/dist
27+
sipXtackLib/src/test/net/SipXauthIdentityTest.cpp

Makefile.in

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.PHONY: build
2+
build:
3+
$(MAKE) recurse TARGETS="all check install"
4+
5+
include top.mak
6+
7+
.PHONY: all
8+
all:
9+
@echo "Target '$@' is not valid. Type 'make build' to build and install."
10+
11+
.PHONY: rpm
12+
rpm:
13+
$(MAKE) recurse TARGETS="rpm install-rpm"
14+
15+
uninstall-rpm:
16+
$(MAKE) recurse TARGETS="uninstall-rpm" PROJECTS="$(PROJECTS_REVERSE)"
17+
18+
%:
19+
$(MAKE) recurse TARGETS="$@"
20+
21+
.PHONY: repo
22+
repo:
23+
cd @DEST_RPM@ && createrepo -g @TOP_ABS_SRCDIR@/meta/comps.xml .

0 commit comments

Comments
 (0)