summaryrefslogtreecommitdiff
path: root/apps/plugins/pdbox/PDa/extra/makefile
diff options
context:
space:
mode:
authorWincent Balin <wincent@rockbox.org>2010-06-03 00:39:13 +0000
committerWincent Balin <wincent@rockbox.org>2010-06-03 00:39:13 +0000
commitc1ae4414d4ac6504992434b949b252c30daf0c48 (patch)
tree696c5781e9a00cea694117eb3ef404d37f10930e /apps/plugins/pdbox/PDa/extra/makefile
parent5edd8cf736232a240e2f4f47eb847e1901d18379 (diff)
downloadrockbox-c1ae4414d4ac6504992434b949b252c30daf0c48.tar.gz
rockbox-c1ae4414d4ac6504992434b949b252c30daf0c48.zip
pdbox: Source cleanup. Removed unneeded files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26497 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pdbox/PDa/extra/makefile')
-rw-r--r--apps/plugins/pdbox/PDa/extra/makefile34
1 files changed, 0 insertions, 34 deletions
diff --git a/apps/plugins/pdbox/PDa/extra/makefile b/apps/plugins/pdbox/PDa/extra/makefile
deleted file mode 100644
index 4bd6ed0960..0000000000
--- a/apps/plugins/pdbox/PDa/extra/makefile
+++ /dev/null
@@ -1,34 +0,0 @@
1
2VERSION = 0.2
3SOURCE = $(shell ls *.c)
4TARGETS = $(SOURCE:.c=.pd_linux)
5
6EXT= pd_linux
7
8AFLAGS = -g -O2 -I./ -DFIXEDPOINT
9EFLAGS = -shared -Wl,-export-dynamic
10PREFIX = /usr
11
12
13all: $(TARGETS)
14
15clean:
16 -rm $(TARGETS)
17 -rm *.o *~
18
19tar: clean
20 cd ..;tar czvf PDa-externals-$(VERSION).tgz PDa-externals
21
22upload: tar
23 scp ../PDa-externals-$(VERSION).tgz gige@xdv.org:~/www/pda/release
24
25install:
26 install -d $(DESTDIR)/$(PREFIX)/lib/pd/extra
27 cp $(TARGETS) $(DESTDIR)/$(PREFIX)/lib/pd/extra
28
29%.$(EXT) : %.o
30 $(CC) -o $@ $(EFLAGS) $+
31
32%.o : %.c
33 $(CC) -c $(AFLAGS) $(CFLAGS) $+
34