File: fix4mac

package info (click to toggle)
aplus-fsf 4.22.1-4
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 22,364 kB
  • ctags: 32,381
  • sloc: cpp: 176,660; ansic: 27,018; sh: 9,748; makefile: 2,600; lisp: 2,151
file content (33 lines) | stat: -rwxr-xr-x 1,228 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#! /bin/sh

for i in cxs a cxb cxc cxsys dap esf MSTypes MSIPC MSGUI IPC AplusGUI
do
  cd src/$i
  sed -e 's/^\.\(.\)\.lo:/.\1.ng:/' \
    -e 's/\.lo/.o/g' \
    -e 's/$(LIBTOOL) --mode=link //' \
    -e "s/^	\$(CXXLINK) -rpath .*/	libtool -o lib${i}.a \$(lib${i}_la_OBJECTS)/" \
    -e "s/^	\$(LINK) -rpath .*/	libtool -o lib${i}.a \$(lib${i}_la_OBJECTS)/" \
    -e 's/lib\(.*\)\.la/lib\1.a/' Makefile > Makefile.mac
  mv Makefile.mac Makefile
  cd ../..
done

sed 's;^	\$(CXXLINK) .*;	\$(CXX) -all_load \$(aplus_OBJECTS) \$(aplus_LDADD) \$(LIBS) -framework CoreServices -o \$@;' src/main/Makefile > src/main/Makefile.mac
mv src/main/Makefile.mac src/main/Makefile

  sed -e 's/libcxs\.la/libcxs.a/g' \
      -e 's/liba\.la/liba.a/g' \
      -e 's/libcxb\.la/libcxb.a/g' \
      -e 's/libcxc\.la/libcxc.a/g' \
      -e 's/libcxsys\.la/libcxsys.a/g' \
      -e 's/libdap\.la/libdap.a/g' \
      -e 's/libesf\.la/libesf.a/g' \
      -e 's/libAplusGUI\.la/libAplusGUI.a/g' \
      -e 's/libIPC\.la/libIPC.a/g' \
      -e 's/libMSGUI\.la/libMSGUI.a/g' \
      -e 's/libMSIPC\.la/libMSIPC.a/g' \
      -e 's/libMSTypes\.la/libMSTypes.a/g' \
     src/main/Makefile > src/main/Makefile.mac
mv src/main/Makefile.mac src/main/Makefile