#!/usr/bin/make -f # ============================================================== # # DO NOT CHANGE ANYTHING IN THIS FILE !!!!!!!!!!!!!! # # ============================================================== # # (unless you know _exactly_ what you are doing) # # All local settings should go to the file ipkg/local_settings, # which will be automatically included if it exists. # # ============================================================== # include file for local settings -include ipkg/local_settings # default settings ARM_ROOTFS ?= /home/trd/user/weiser/svntrunk/install DESTDIR=/tmp/trdce PREFIX=/usr Makefile: ./configure --host=arm-linux-uclibc --prefix=$(PREFIX) \ --sysconfdir=/etc \ --with-rootfs=$(ARM_ROOTFS) configure: Makefile build: configure $(MAKE) clean: $(MAKE) distclean install: build rm -rf $(DESTDIR) $(MAKE) install-strip DESTDIR=$(DESTDIR) mkdir -p $(DESTDIR)/etc/init.d/rc/ install -o root -g root -m 755 ipkg/feeserver.sh \ $(DESTDIR)/etc/init.d/rc/feeserver.sh rm -rf $(DESTDIR)/$(PREFIX)/include rm -rf $(DESTDIR)/$(PREFIX)/lib/*.la rm -rf $(DESTDIR)/$(PREFIX)/lib/*.a