diff options
| author | bringert <bringert@cs.chalmers.se> | 2006-03-21 10:30:19 +0000 |
|---|---|---|
| committer | bringert <bringert@cs.chalmers.se> | 2006-03-21 10:30:19 +0000 |
| commit | b87b82fbd97a8bcfab93a3e219ff42c3a3ddb927 (patch) | |
| tree | b6c91a1c226b7f178591cb1c4df53da6591a6fbd | |
| parent | cf2c5641a26fa53178d5e9d8016fb606956b4e25 (diff) | |
Debian package: run configure and make in src/.
| -rw-r--r-- | debian/rules | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules index 0947cbf15..ae606c19d 100644 --- a/debian/rules +++ b/debian/rules @@ -36,9 +36,9 @@ build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. - ./configure $(confflags) + cd src && ./configure $(confflags) - $(MAKE) unix + $(MAKE) -C src unix #docbook-to-man debian/gf.sgml > gf.1 touch build-stamp @@ -49,7 +49,7 @@ clean: rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. - -$(MAKE) clean + -$(MAKE) -C src clean dh_clean @@ -60,7 +60,7 @@ install: build dh_installdirs # Add here commands to install the package into debian/gf. - $(MAKE) install DESTDIR=$(CURDIR)/debian/gf + $(MAKE) -C src install DESTDIR=$(CURDIR)/debian/gf # Build architecture-independent files here. |
