mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-02-05 00:25:26 +00:00
Removed stale file
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@165 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
@ -1,45 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
|
||||
<plist version="0.9">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleDocumentTypes</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>CFBundleTypeExtensions</key>
|
||||
<array>
|
||||
<string>projectM</string>
|
||||
</array>
|
||||
<key>CFBundleTypeOSTypes</key>
|
||||
<array>
|
||||
<string>projectM</string>
|
||||
</array>
|
||||
<key>CFBundleTypeRole</key>
|
||||
<string>None</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>projectM</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>0.94.20 Copyright (c)projectM Team</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.projectM.projectM</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>projectM</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>hvpl</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>hook</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>CSResourcesFileMapped</key>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>projectM.icns</string>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -1,88 +0,0 @@
|
||||
#
|
||||
# projectM -- Milkdrop-esque visualisation SDK
|
||||
# Copyright (C)2003-2004 projectM Team
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2.1 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
# See 'LICENSE.txt' included within this release
|
||||
|
||||
SUBDIRS=
|
||||
RANLIB=ranlib
|
||||
|
||||
INCLUDES=-I. -I.. -I../include -I/usr/local/include \
|
||||
-I/System/Library/Frameworks/AGL.framework/Headers \
|
||||
-I/System/Library/Frameworks/OpenGL.framework/Headers \
|
||||
-I/Developer/Headers/FlatCarbon \
|
||||
-I$(HOME)/Desktop/iTunes\ Visual\ Plugins\ SDK/APIs
|
||||
|
||||
DEFINES= -DMACOS -DHAVE_OPENGL -DHAVE_CONFIG_H -D_THREAD_SAFE # -DDEBUG
|
||||
CFLAGS=-O2
|
||||
#CFLAGS=-g
|
||||
LIBRARIES= -framework Cocoa -framework Carbon -framework AGL -framework OpenGL -lprojectM
|
||||
#LD_FLAGS=-bundle -L/usr/local/lib $(LIBRARIES)
|
||||
LD_FLAGS=-L/usr/local/lib -L../projectM $(LIBRARIES)
|
||||
|
||||
SRCS=\
|
||||
macos/iTunesAPI.c \
|
||||
iprojectM.c
|
||||
OBJS=$(SRCS:.c=.o)
|
||||
|
||||
.SUFFIXES: .c
|
||||
|
||||
all: projectM
|
||||
|
||||
### Relinks the libry
|
||||
projectM: $(OBJS) ../projectm/libprojectm.a
|
||||
rm -rf projectM.bundle
|
||||
cc -o projectM -bundle $(OBJS) $(LD_FLAGS)
|
||||
mkdir -p projectM.bundle/Contents
|
||||
mkdir -p projectM.bundle/Contents/MacOS
|
||||
mkdir -p projectM.bundle/Contents/Resources
|
||||
cp projectM projectM.bundle/Contents/MacOS/projectM
|
||||
cp Info.plist projectM.bundle/Contents
|
||||
cp projectM.icns projectM.bundle/Contents/Resources/projectM.icns
|
||||
cp PkgInfo projectM.bundle/Contents
|
||||
cp -r ../../fonts projectM.bundle/Contents/Resources
|
||||
cp -r ../../presets_projectM projectM.bundle/Contents/Resources/presets
|
||||
cp ../../AUTHORS.txt projectM.bundle/Contents/Resources
|
||||
cp ../../LICENSE.txt projectM.bundle/Contents/Resources
|
||||
cp ../../FAQ.txt projectM.bundle/Contents/Resources
|
||||
cp ../../INSTALL-iTunes-macos.txt projectM.bundle/Contents/Resources
|
||||
mkdir -p $(HOME)/Library/iTunes/iTunes\ Plug-ins/projectM
|
||||
cp -r projectM.bundle $(HOME)/Library/iTunes/iTunes\ Plug-ins/projectM
|
||||
|
||||
../projectm/libproject.a:
|
||||
( cd ../projectm ; make -f Makefile.macos )
|
||||
|
||||
image: projectM
|
||||
rm -f projectM.dmg
|
||||
hdiutil create -srcfolder projectM.bundle projectM.dmg
|
||||
|
||||
$(LIB_TOP):
|
||||
@( if [ ! -d $(LIB_TOP) ]; then \
|
||||
( mkdir $(LIB_TOP) ) \
|
||||
fi )
|
||||
|
||||
$(OBJS): %.o: %.c
|
||||
$(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $*.c -o $*.o
|
||||
|
||||
clean:
|
||||
rm -f *.o
|
||||
rm -f libprojectm.a
|
||||
rm -rf projectM.bundle
|
||||
|
||||
distcln: cln
|
||||
rm -f config.log
|
||||
rm -f config.che
|
||||
rm -f config.stus
|
||||
Binary file not shown.
Reference in New Issue
Block a user