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

« back to all changes in this revision

Viewing changes to lib/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:
27
27
     snmp otp_mibs appmon erl_interface os_mon tools runtime_tools
28
28
  ifdef BUILD_ALL
29
29
    OTHER_SUB_DIRECTORIES += mnesia jinterface ic mnemosyne asn1 debugger \
30
 
      eva inets mnesia_session orber pman tv observer cosTransactions cosEvent \
 
30
        inets mnesia_session orber pman tv observer cosTransactions cosEvent \
31
31
      cosTime cosNotification cosProperty cosFileTransfer cosEventDomain
32
32
  endif
33
33
else
39
39
#      appmon os_mon tools runtime_tools
40
40
    ifdef BUILD_ALL
41
41
      OTHER_SUB_DIRECTORIES += mnesia mnemosyne \
42
 
        eva inets mnesia_session pman tv observer
 
42
        inets mnesia_session pman tv observer
43
43
#      OTHER_SUB_DIRECTORIES += mnesia ic mnemosyne asn1 debugger \
44
 
#        eva inets mnesia_session orber pman tv observer cosTransactions cosEvent \
 
44
#        inets mnesia_session orber pman tv observer cosTransactions cosEvent \
45
45
#        cosTime cosNotification cosProperty cosFileTransfer cosEventDomain
46
46
    endif
47
47
  else
 
48
#
 
49
# unix and win32
 
50
# --------------
 
51
#
48
52
    ERTS_SUB_DIRECTORIES = stdlib sasl kernel compiler
 
53
    OTHER_SUB_DIRECTORIES = tools
49
54
    ifdef BUILD_ALL
50
 
      ifeq ($(findstring win32,$(TARGET)),win32)
51
 
        OTHER_SUB_DIRECTORIES =                         \
52
 
          snmp otp_mibs appmon erl_interface asn1 jinterface eva gs inets ic \
 
55
      ifeq ($(findstring win32,$(TARGET)),win32) # BUILD_ALL on win32
 
56
        OTHER_SUB_DIRECTORIES +=                        \
 
57
          snmp otp_mibs appmon erl_interface asn1 jinterface gs inets ic \
53
58
          mnesia mnemosyne mnesia_session $(CRYPTO_APP) orber os_mon parsetools pman \
54
 
          $(SSL_APP) toolbar tools tv observer debugger odbc runtime_tools \
 
59
          $(SSL_APP) toolbar tv observer debugger odbc runtime_tools \
55
60
          cosTransactions cosEvent cosTime cosNotification cosProperty \
56
 
          cosFileTransfer cosEventDomain et megaco webtool
57
 
      else
58
 
        OTHER_SUB_DIRECTORIES = \
59
 
          snmp otp_mibs appmon erl_interface asn1 jinterface eva debugger gs inets \
 
61
          cosFileTransfer cosEventDomain et megaco webtool syntax_tools \
 
62
          xmerl edoc ssh inviso
 
63
# dialyzer
 
64
        OTHER_SUB_DIRECTORIES += hipe
 
65
      else # BUILD_ALL on unix
 
66
        OTHER_SUB_DIRECTORIES += \
 
67
          snmp otp_mibs appmon erl_interface asn1 jinterface debugger gs inets \
60
68
          ic mnesia  mnemosyne mnesia_session $(CRYPTO_APP) orber os_mon parsetools \
61
 
          pman $(SSL_APP) toolbar tools tv observer \
 
69
          pman $(SSL_APP) toolbar tv observer odbc \
62
70
          runtime_tools cosTransactions cosEvent cosTime cosNotification \
63
 
          cosProperty cosFileTransfer cosEventDomain et megaco webtool
64
 
        ifeq ($(findstring sparc-sun-solaris,$(TARGET)),sparc-sun-solaris)
65
 
          OTHER_SUB_DIRECTORIES += odbc
66
 
        endif
67
 
        OTHER_SUB_DIRECTORIES += $(HIPE_APP) $(TSP_APP)
 
71
          cosProperty cosFileTransfer cosEventDomain et megaco webtool \
 
72
          syntax_tools xmerl edoc ssh inviso
 
73
# dialyzer
 
74
        OTHER_SUB_DIRECTORIES += hipe $(TSP_APP)
68
75
      endif
69
76
    endif
70
77
  endif
72
79
 
73
80
ifdef BOOTSTRAP
74
81
  SUB_DIRECTORIES = \
75
 
    stdlib compiler orber/include
 
82
    kernel stdlib compiler orber/include
76
83
else
77
84
  ifdef SECONDARY_BOOTSTRAP
78
 
    SUB_DIRECTORIES = kernel parsetools asn1/src $(HIPE_APP)
 
85
    SUB_DIRECTORIES = parsetools asn1/src hipe
79
86
  else
80
87
    ifdef TERTIARY_BOOTSTRAP
81
88
      SUB_DIRECTORIES = snmp
82
89
    else
83
90
      ifdef FOURTH_BOOTSTRAP
84
91
        SUB_DIRECTORIES = sasl jinterface ic
85
 
      else
 
92
      else # Not bootstrap build
86
93
        SUB_DIRECTORIES = $(ERTS_SUB_DIRECTORIES) $(OTHER_SUB_DIRECTORIES)
87
94
      endif
88
95
    endif