summaryrefslogtreecommitdiff
path: root/tools/checkwps/Makefile
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-09-13 15:24:59 +0000
committerThomas Martitz <kugel@rockbox.org>2009-09-13 15:24:59 +0000
commit022463b46c3911830d6144acd1c2957ac9fe1f2d (patch)
tree5c4f87f0ece2f7f4df42626b747efe07fe7a9812 /tools/checkwps/Makefile
parentc0f1c49178b4c205e1c990ea2fb25a417305528c (diff)
downloadrockbox-022463b46c3911830d6144acd1c2957ac9fe1f2d.tar.gz
rockbox-022463b46c3911830d6144acd1c2957ac9fe1f2d.zip
Repair build-all.sh and clean-all.sh.
Make it so that it runs ../configure and make for each target. This makes the wrapper-Makefile obsolete. It moves the binaries to tools/checkwps/output. NOTE: Something is fishy with the creative players (it builds them, but can't move them), because the configure target name and modelname differs (not sure how to fix that). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22696 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/checkwps/Makefile')
-rw-r--r--tools/checkwps/Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/tools/checkwps/Makefile b/tools/checkwps/Makefile
deleted file mode 100644
index faa75efac3..0000000000
--- a/tools/checkwps/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9
10ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
11CFLAGS+=-mno-cygwin
12EXT = .exe
13else
14ifeq ($(findstring MINGW,$(shell uname)),MINGW)
15EXT = .exe
16CC = mingw32-gcc
17endif
18endif
19
20# This is a wrapper for checkwps.make
21APPSDIR=.
22ROOTDIR=../..
23BUILDDIR=.
24BINARY=checkwps.$(MODELNAME)$(EXT)
25HOSTCC=$(CC)
26TARGET=-D$(TARGETNAME)
27include checkwps.make
28
29all:
30 @echo To build, run the buildall.sh script
31
32checkwps: $(BUILDDIR)/$(BINARY)
33 @echo foo > /dev/null
34
35clean:
36 rm -f checkwps.$(MODELNAME)$(EXT)