dslinux/user/pixil/packages/viewml Config.in Makefile

amadeus dslinux_amadeus at user.in-berlin.de
Tue Oct 3 13:26:25 CEST 2006


Update of /cvsroot/dslinux/dslinux/user/pixil/packages/viewml
In directory antilope:/tmp/cvs-serv11916/packages/viewml

Added Files:
	Config.in Makefile 
Log Message:
adding pristine copy of pixil to HEAD so I can branch from it

--- NEW FILE: Config.in ---
config CONFIG_VIEWML
	bool "ViewML Web Browser"
	depends CONFIG_NANOX && CONFIG_FLNX
	default n

config LIBWWW_PREFIX
       string "W3C WWW libraries prefix"
       default "/usr/"
       depends on CONFIG_VIEWML
       help
         Specify where the W3C libraries live for your target
	 platform.

--- NEW FILE: Makefile ---
VIEWML_DIR=${shell pwd}/viewml

export CC=$(TARGET_CROSS)gcc
export CXX=$(TARGET_CROSS)g++
export AR=$(TARGET_CROSS)ar
export NM=$(TARGET_CROSS)nm
export RANLIB=$(TARGET_CROSS)ranlib
export LD=$(TARGET_CROSS)ld

$(VIEWML_DIR)/.configured: 
	(cd $(VIEWML_DIR); ./configure \
	--host=$(SYS) \
        --build=$(BUILD_SYS) \
	--with-libwwwconf=$(strip $(subst ",, $(LIBWWW_PREFIX)))/bin \
	--with-microwin=$(strip $(subst ",, $(MW_PREFIX))) \
	--with-fltk=$(BASE_DIR)/libs/flnx \
	--with-nxapp=$(BASE_DIR)/libs/pim)
	touch $(VIEWML_DIR)/.configured

$(VIEWML_DIR)/src/viewml: $(VIEWML_DIR)/.configured
	make -C $(VIEWML_DIR) -e

all: $(VIEWML_DIR)/src/viewml

clean: 
	if [ -f $(VIEWML_DIR)/Makefile ]; then \
		make -C $(VIEWML_DIR) distclean; \
	fi
	rm -rf $(VIEWML_DIR)/.configured

install: $(VIEWML_DIR)/src/viewml
	cp ./viewml/src/viewml $(INSTALL_DIR)/bin

.PHONY: all clean install




More information about the dslinux-commit mailing list