Skip to content

Commit 630ed8b

Browse files
committed
Revert "start application"
This reverts commit 111a7b1.
1 parent ed8e8bf commit 630ed8b

8 files changed

+6
-235
lines changed

doc/Makefile.am

+2-7
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,12 @@
33
##
44
## Process this file with automake to produce Makefile.in
55

6-
modhtml = sccp.html \
7-
sccp_app.html \
8-
sccp_sup.html \
9-
sccp_codec.html
6+
modhtml = sccp.html sccp_codec.html
107

118
doc_DATA = overview.edoc $(modhtml) \
129
modules-frame.html overview-summary.html \
1310
index.html stylesheet.css edoc-info \
14-
sigscale-logo.png \
15-
supervision.svg
11+
sigscale-logo.png
1612

1713
overview.edoc: overview.edoc-in
1814
sed -e 's!%VERSION%!$(VERSION)!' \
@@ -29,7 +25,6 @@ overview.edoc: overview.edoc-in
2925
mv $$i.tmp $$i; \
3026
done
3127
-cp -n $(top_srcdir)/doc/sigscale-logo.png .
32-
-cp -n $(top_srcdir)/doc/supervision.svg .
3328

3429
CLEANFILES = $(doc_DATA) \
3530
edoc-info \

doc/diagrams.graffle

-49.8 KB
Binary file not shown.

doc/supervision.edoc

-22
This file was deleted.

doc/supervision.svg

-34
This file was deleted.

ebin/Makefile.am

+1-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ appdir = $(beamdir)
77
app_DATA = sccp.app sccp.appup
88
EXTRA_DIST = sccp.app sccp.appup
99

10-
beam_DATA = sccp.beam \
11-
sccp_app.beam \
12-
sccp_sup.beam \
13-
sccp_codec.beam
10+
beam_DATA = sccp.beam sccp_codec.beam
1411

1512
%.beam:$(top_srcdir)/src/%.erl $(top_srcdir)/include/sccp.hrl
1613
$(ERLC) $(ERLCFLAGS) -I $(top_srcdir)/include $<

ebin/sccp.app-in

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{application, %APP_NAME%,
2-
[{description, "SigScale Signalling Connection Control Part (SCCP)"},
2+
[{description, "SigScale Signalling Connection Control Part (SCCP)"},
33
{vsn, "%APP_VERSION%"},
44
{modules,
5-
[sccp,
6-
sccp_app,
7-
sccp_sup,
8-
sccp_codec]},
5+
[sccp, sccp_codec]},
96
{registered, []},
10-
{applications, [kernel, stdlib]},
11-
{mod, {sccp_app, []}}]}.
7+
{applications, [kernel, stdlib]}]}.

src/sccp_app.erl

-100
This file was deleted.

src/sccp_sup.erl

-61
This file was deleted.

0 commit comments

Comments
 (0)