~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/hipe/flow/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
# the License for the specific language governing rights and limitations
10
10
# under the License.
11
11
12
 
# The Initial Developer of the Original Code is Ericsson Utvecklings AB.
13
 
# Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings
14
 
# AB. All Rights Reserved.''
15
 
16
12
#     $Id$
17
13
#
18
14
 
41
37
# ----------------------------------------------------
42
38
# Target Specs
43
39
# ----------------------------------------------------
44
 
MODULES = hipe_bb hipe_gen_cfg
 
40
MODULES = hipe_bb hipe_dominators hipe_gen_cfg
45
41
 
46
42
 
47
43
HRL_FILES=
 
44
INC_FILES= cfg.inc ebb.inc liveness.inc
48
45
ERL_FILES= $(MODULES:%=%.erl)
49
46
TARGET_FILES= $(MODULES:%=$(EBIN)/%.$(EMULATOR))
50
47
DOC_FILES= $(MODULES:%=$(DOCS)/%.html)
76
73
        rm -f core
77
74
 
78
75
$(DOCS)/%.html:%.erl
79
 
        erl -noshell -run edoc_run file '"$<"' '[{dir, "$(DOCS)"}]' -s erlang halt
 
76
        erl -noshell -run edoc_run file '"$<"' '[{dir, "$(DOCS)"}]' -s init stop
80
77
 
81
78
# ----------------------------------------------------
82
79
# Special Build Targets
90
87
include $(ERL_TOP)/make/otp_release_targets.mk
91
88
 
92
89
release_spec: opt
 
90
        $(INSTALL_DIR) $(RELSYSDIR)/flow
 
91
        $(INSTALL_DATA) $(ERL_FILES) $(HRL_FILES) $(INC_FILES) $(RELSYSDIR)/flow
93
92
        $(INSTALL_DIR) $(RELSYSDIR)/ebin
94
93
        $(INSTALL_DATA) $(TARGET_FILES) $(RELSYSDIR)/ebin
95
94