Changeset 486
- Timestamp:
- 09/16/08 17:49:24 (4 months ago)
- Files:
-
- trunk/linux/debian/rules (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/linux/debian/rules
r455 r486 5 5 6 6 7 configure: configure-stamp 8 configure-stamp: 9 dh_testdir 7 configure: 10 8 # Add here commands to configure the package. 11 touch configure-stamp12 #cd ..; prefix=/usr ./configure13 9 10 build: 11 # Add here commands to compile the package. 12 #cd ..; scons 14 13 15 build: build-stamp16 17 18 build-stamp: configure-stamp19 dh_testdir20 21 # Add here commands to compile the package.22 cd ..; scons23 24 touch build-stamp25 14 26 15 clean: 27 16 dh_testdir 28 17 dh_testroot 29 rm -f build-stamp configure-stamp30 -find . -name '*.py[co]' | xargs rm -f31 18 32 19 # Add here commands to clean up after the build process. … … 40 27 dh_clean -k 41 28 dh_installdirs 42 43 29 mkdir -p $(CURDIR)/debian/hydrogen/usr/bin 44 30 45 #cd ..; $(MAKE) INSTALL_ROOT=$(CURDIR)/debian/hydrogen/usr install 46 cd ..; scons destdir=$(CURDIR)/debian/hydrogen/ prefix=/usr/ install 31 cd ..; scons --no-cache destdir=$(CURDIR)/debian/hydrogen/ prefix=/usr/ install 32 33 find $(CURDIR)/debian/hydrogen -name '.svn' | xargs rm -rf 47 34 docs: 48 35
