~clint-fewbar/ubuntu/precise/erlang/merge-15b

« back to all changes in this revision

Viewing changes to lib/runtime_tools/c_src/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Sergei Golovan
  • Date: 2011-12-15 19:20:10 UTC
  • mfrom: (1.1.18) (3.5.15 sid)
  • mto: (3.5.16 sid)
  • mto: This revision was merged to the branch mainline in revision 33.
  • Revision ID: package-import@ubuntu.com-20111215192010-jnxcfe3tbrpp0big
Tags: 1:15.b-dfsg-1
* New upstream release.
* Upload to experimental because this release breaks external drivers
  API along with ABI, so several applications are to be fixed.
* Removed SSL patch because the old SSL implementation is removed from
  the upstream distribution.
* Removed never used patch which added native code to erlang beam files.
* Removed the erlang-docbuilder binary package because the docbuilder
  application was dropped by upstream.
* Documented dropping ${erlang-docbuilder:Depends} substvar in
  erlang-depends(1) manpage.
* Made erlang-base and erlang-base-hipe provide virtual package
  erlang-abi-15.b (the number means the first erlang version, which
  provides current ABI).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
2
# %CopyrightBegin%
3
3
#
4
 
# Copyright Ericsson AB 1999-2010. All Rights Reserved.
 
4
# Copyright Ericsson AB 1999-2011. All Rights Reserved.
5
5
#
6
6
# The contents of this file are subject to the Erlang Public License,
7
7
# Version 1.1, (the "License"); you may not use this file except in
89
89
# Targets
90
90
# ----------------------------------------------------
91
91
 
92
 
debug opt: $(OBJDIR) $(BINDIR) $(SOLIBS)
93
 
 
94
 
$(OBJDIR):
95
 
        -@mkdir -p $(OBJDIR)
96
 
 
97
 
$(BINDIR):
98
 
        -@mkdir -p $(BINDIR)
 
92
_create_dirs := $(shell mkdir -p $(OBJDIR) $(LIBDIR))
 
93
 
 
94
debug opt: $(SOLIBS)
99
95
 
100
96
$(OBJDIR)/%.o: %.c
101
 
        $(INSTALL_DIR) $(OBJDIR)
102
97
        $(CC) -c -o $@ $(ALL_CFLAGS) $<
103
98
 
104
99
$(LIBDIR)/trace_ip_drv.so: $(TRACE_IP_DRV_OBJS)
105
 
        $(INSTALL_DIR) $(LIBDIR)
106
100
        $(LD) $(LDFLAGS) -o $@ $^ -lc $(LIBS)
107
101
 
108
102
$(LIBDIR)/trace_file_drv.so: $(TRACE_FILE_DRV_OBJS)
109
 
        $(INSTALL_DIR) $(LIBDIR)
110
103
        $(LD) $(LDFLAGS) -o $@ $^ -lc $(LIBS)
111
104
 
112
105
$(LIBDIR)/trace_ip_drv.dll: $(TRACE_IP_DRV_OBJS)
113
 
        $(INSTALL_DIR) $(LIBDIR)
114
106
        $(LD) $(LDFLAGS) -o $@ $^ $(LIBS)
115
107
$(LIBDIR)/trace_file_drv.dll: $(TRACE_FILE_DRV_OBJS)
116
 
        $(INSTALL_DIR) $(LIBDIR)
117
108
        $(LD) $(LDFLAGS) -o $@ $^ $(LIBS)
118
109
#
119
110
# VxWorks is simply to different from Unix in this sense.
120
111
# Here are the inference rules for VxWorks
121
112
#
122
113
$(LIBDIR)/trace_ip_drv.eld: $(TRACE_IP_DRV_OBJS)
123
 
        $(INSTALL_DIR) $(LIBDIR)
124
114
        $(LD) $(LDFLAGS) -o $@ $^ 
125
115
 
126
116
$(LIBDIR)/trace_file_drv.eld: $(TRACE_FILE_DRV_OBJS)
127
 
        $(INSTALL_DIR) $(LIBDIR)
128
117
        $(LD) $(LDFLAGS) -o $@ $^ 
129
118
 
130
119
clean: