~ubuntu-branches/ubuntu/raring/sunpinyin/raring

« back to all changes in this revision

Viewing changes to wrapper/macos/Makefile

  • Committer: Package Import Robot
  • Author(s): YunQiang Su
  • Date: 2012-03-30 15:31:55 UTC
  • mfrom: (1.1.3) (1.2.7 sid)
  • Revision ID: package-import@ubuntu.com-20120330153155-qgls77sogzgtg9zp
Tags: 2.0.3+git20120222-1
* Team upload: git snapshot 20120222.
   - fix breaks if LDFLAGS in environment contains
       multiple words (Closese #646001).
   - rm patches merged to upstream:
       append-os-environ-toenv.patch
       fix-ftbfs-on-sh.patch
       remove-10-candidate-words-limitation.patch
   - refresh disable-lm-dict-compile.patch.
* Bump stardard version to 3.9.3: no modify needed.
* add libsunpinyin3-dbg and python-sunpinyin packages.
* debian/compat to 9, multiarch it.
* rewrite debian/rules with dh 7 format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
all: debug
 
2
 
 
3
release:
 
4
        xcodebuild -project SunPinyin.xcodeproj -configuration Release build
 
5
        rm -f build/SunPinyin.app
 
6
        cd build ; ln -s Release/SunPinyin.app SunPinyin.app
 
7
 
 
8
debug:
 
9
        xcodebuild -project SunPinyin.xcodeproj -configuration Debug build
 
10
        rm -f build/SunPinyin.app
 
11
        cd build ; ln -s Debug/SunPinyin.app SunPinyin.app
 
12
 
 
13
install:
 
14
        rm -rf "/Library/Input Methods/SunPinyin.app"
 
15
        cp -R build/Debug/SunPinyin.app "/Library/Input Methods"
 
16
 
 
17
install-release:
 
18
        rm -rf "/Library/Input Methods/SunPinyin.app"
 
19
        cp -R build/Release/SunPinyin.app "/Library/Input Methods"
 
20
 
 
21
clean:
 
22
        rm -rf build
 
23
 
 
24