This repository has been archived by the owner on Feb 24, 2020. It is now read-only.
forked from essej/sooperlooper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
40 lines (37 loc) · 1.72 KB
/
Makefile.am
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
34
35
36
37
38
39
40
# Copyright (C) 2004 Jesse Chappell <[email protected]>
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
EXTRA_DIST = autogen.sh configure OSC top_marker
SUBDIRS = libs src
MACDISTDIR = macdist/SooperLooper-@SOOP_VERSION@
mac: all
-rm -rf macdist
-mkdir -p macdist
-mkdir -p $(MACDISTDIR)
-mkdir -p $(MACDISTDIR)/SooperLooper.app
-mkdir -p $(MACDISTDIR)/Presets
-mkdir -p $(MACDISTDIR)/SooperLooper.app/Contents
-mkdir -p $(MACDISTDIR)/SooperLooper.app/Contents/MacOS
-mkdir -p $(MACDISTDIR)/SooperLooper.app/Contents/Resources
`@WX_CONFIG@ --rezflags` src/gui/slgui
strip src/gui/slgui
strip src/sooperlooper
cp -f src/gui/slgui $(MACDISTDIR)/SooperLooper.app/Contents/MacOS/
cp -f src/sooperlooper $(MACDISTDIR)/SooperLooper.app/Contents/MacOS/
cp -f mac/Info.plist $(MACDISTDIR)/SooperLooper.app/Contents/
cp -f mac/PkgInfo $(MACDISTDIR)/SooperLooper.app/Contents/
cp -f mac/slgui.icns $(MACDISTDIR)/SooperLooper.app/Contents/Resources/
cp -f mac/README_AudioUnit.txt $(MACDISTDIR)/
cp -rf mac/SooperLooperAU/build/SooperLooperAU.component $(MACDISTDIR)/
cp -f src/*.slb $(MACDISTDIR)/Presets/
cp -f README $(MACDISTDIR)/README.txt
cp -f COPYING $(MACDISTDIR)/COPYING.txt
cp -f OSC $(MACDISTDIR)/OSC.txt
rm -f SooperLooper-@[email protected]
hdiutil create -fs HFS+ -volname SooperLooper-@SOOP_VERSION@ -srcfolder macdist SooperLooper-@[email protected]