From: <ale...@us...> - 2004-02-29 23:50:27
|
Update of /cvsroot/morphix/morph-scripts/mountmodule-1.0/debian In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22276/mountmodule-1.0/debian Modified Files: rules Log Message: adding install2mainmod (converts a normal install to a mainmodule, pretty untested), small fixes to isomorph and minimod-gen Index: rules =================================================================== RCS file: /cvsroot/morphix/morph-scripts/mountmodule-1.0/debian/rules,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** rules 20 Feb 2004 00:18:42 -0000 1.2 --- rules 29 Feb 2004 23:32:01 -0000 1.3 *************** *** 5,40 **** # Uncomment this to turn on verbose mode. ! #export DH_VERBOSE=1 ! ! ! ! ! CFLAGS = -Wall -g ! ! ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) ! CFLAGS += -O0 ! else ! CFLAGS += -O2 ! endif ! ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) ! INSTALL_PROGRAM += -s ! endif configure: configure-stamp configure-stamp: dh_testdir - # Add here commands to configure the package. touch configure-stamp - build: build-stamp build-stamp: configure-stamp dh_testdir - - # Add here commands to compile the package. - #/usr/bin/docbook-to-man debian/mountmodule.sgml > mountmodule.1 - touch build-stamp --- 5,20 ---- # Uncomment this to turn on verbose mode. ! export DH_VERBOSE=1 configure: configure-stamp configure-stamp: dh_testdir touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir touch build-stamp *************** *** 44,49 **** rm -f build-stamp configure-stamp - # Add here commands to clean up after the build process. - dh_clean --- 24,27 ---- *************** *** 55,61 **** # Add here commands to install the package into debian/mountmodule. ! mv $(CURDIR)/debian/tmp $(CURDIR)/debian/mountmodule ! cp $(CURDIR)/mount_module $(CURDIR)/debian/mountmodule/usr/sbin/ ! # Build architecture-independent files here. --- 33,37 ---- # Add here commands to install the package into debian/mountmodule. ! install $(CURDIR)/src/mount_module $(CURDIR)/debian/mountmodule/usr/sbin # Build architecture-independent files here. |