summaryrefslogtreecommitdiffstats
path: root/rules/vice.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2008-06-05 21:13:04 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2008-06-05 21:13:04 +0000
commit0631f531bc74b8bde9a604182486a5621ed64cfc (patch)
tree0f6b2f14d3d5bd89bf2efb91d0db31117a84f9e8 /rules/vice.make
parentfcbb7a82fea50387b64e18cba09c45ec7c446269 (diff)
downloadptxdist-0631f531bc74b8bde9a604182486a5621ed64cfc.tar.gz
ptxdist-0631f531bc74b8bde9a604182486a5621ed64cfc.tar.xz
* vice.make:
cleanups git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8429 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/vice.make')
-rw-r--r--rules/vice.make84
1 files changed, 21 insertions, 63 deletions
diff --git a/rules/vice.make b/rules/vice.make
index 1a1e1beba..08db218f4 100644
--- a/rules/vice.make
+++ b/rules/vice.make
@@ -1,7 +1,7 @@
# -*-makefile-*-
# $Id: template 6655 2007-01-02 12:55:21Z rsc $
#
-# Copyright (C) 2007 by Marc Kleine-Budde <mkl@pengutronix.de>
+# Copyright (C) 2007-2008 by Marc Kleine-Budde <mkl@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
@@ -23,39 +23,19 @@ VICE_SUFFIX := tar.gz
VICE_URL := http://www.viceteam.org/online/$(VICE).$(VICE_SUFFIX)
VICE_SOURCE := $(SRCDIR)/$(VICE).$(VICE_SUFFIX)
VICE_DIR := $(BUILDDIR)/$(VICE)
+
# ----------------------------------------------------------------------------
# Get
# ----------------------------------------------------------------------------
-vice_get: $(STATEDIR)/vice.get
-
-$(STATEDIR)/vice.get: $(vice_get_deps_default)
- @$(call targetinfo, $@)
- @$(call touch, $@)
-
$(VICE_SOURCE):
- @$(call targetinfo, $@)
+ @$(call targetinfo)
@$(call get, VICE)
# ----------------------------------------------------------------------------
-# Extract
-# ----------------------------------------------------------------------------
-
-vice_extract: $(STATEDIR)/vice.extract
-
-$(STATEDIR)/vice.extract: $(vice_extract_deps_default)
- @$(call targetinfo, $@)
- @$(call clean, $(VICE_DIR))
- @$(call extract, VICE)
- @$(call patchin, VICE)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------
-vice_prepare: $(STATEDIR)/vice.prepare
-
VICE_PATH := PATH=$(CROSS_PATH)
VICE_ENV := $(CROSS_ENV)
@@ -65,59 +45,37 @@ VICE_ENV := $(CROSS_ENV)
VICE_AUTOCONF := \
$(CROSS_AUTOCONF_USR) \
\
+ --with-sdl \
+ --disable-gnomeui \
+ --disable-nls \
+ --disable-realdevice \
+ --disable-ffmpeg \
+ --disable-ethernet \
--disable-ipv6 \
+ --disable-parsid \
+ --disable-bundle \
\
- --without-xaw3d \
- --with-readline \
- \
+ --without-readline \
--without-arts \
--without-esd \
--with-alsa \
--without-oss \
- --without-resid \
+ --with-resid \
--without-png \
--without-zlib \
--without-picasso96 \
- --without-cocoa
-
-$(STATEDIR)/vice.prepare: $(vice_prepare_deps_default)
- @$(call targetinfo, $@)
- @$(call clean, $(VICE_DIR)/config.cache)
- cd $(VICE_DIR) && \
- $(VICE_PATH) $(VICE_ENV) \
- ./configure $(VICE_AUTOCONF)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Compile
-# ----------------------------------------------------------------------------
-
-vice_compile: $(STATEDIR)/vice.compile
-
-$(STATEDIR)/vice.compile: $(vice_compile_deps_default)
- @$(call targetinfo, $@)
- cd $(VICE_DIR) && $(VICE_PATH) $(MAKE) $(PARALLELMFLAGS)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-vice_install: $(STATEDIR)/vice.install
-
-$(STATEDIR)/vice.install: $(vice_install_deps_default)
- @$(call targetinfo, $@)
- @$(call install, VICE)
- @$(call touch, $@)
+ --without-cocoa \
+ \
+ --enable-fullscreen \
+ --without-xaw3d \
+ --without-x
# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------
-vice_targetinstall: $(STATEDIR)/vice.targetinstall
-
-$(STATEDIR)/vice.targetinstall: $(vice_targetinstall_deps_default)
- @$(call targetinfo, $@)
+$(STATEDIR)/vice.targetinstall:
+ @$(call targetinfo)
@$(call install_init, vice)
@$(call install_fixup, vice,PACKAGE,vice)
@@ -132,7 +90,7 @@ $(STATEDIR)/vice.targetinstall: $(vice_targetinstall_deps_default)
@$(call install_finish, vice)
- @$(call touch, $@)
+ @$(call touch)
# ----------------------------------------------------------------------------
# Clean