Skip to content

Commit

Permalink
Renamed autogen.sh to bootstrap.
Browse files Browse the repository at this point in the history
  • Loading branch information
mschuerig committed Jan 22, 2009
1 parent 88a3d18 commit a5fc6a8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 12 deletions.
15 changes: 11 additions & 4 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,27 @@ if it doesn't write anything to stdout for a given period.

### Some more docs are coming in due time...

Building
--------

Building from a .tar.gz distribution
------------------------------------

See INSTALL.


Building from a git clone
-------------------------

You need the whole set of autotools, gettext, and gnulib.

Generate all the infrastructure files with
$ ./autogen.sh
$ ./bootstrap
$ ./configure
$ make
$ sudo make

OR

Generate a Debian package
$ debuild -I.git -I.gitignore -us -uc
$ debuild -I.git -I.gitignore -D -us -uc
$ cd ..
$ sudo dpkg -i hangon_0.1_i386.deb # or whatever it is called
File renamed without changes.
16 changes: 8 additions & 8 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ include /usr/share/cdbs/1/class/autotools.mk

# Add here any variable or target overrides you need.

.PHONY: autogen-clean
.PHONY: bootstrap-clean

pre-build:: stamp-autogen
pre-build:: stamp-bootstrap

clean:: autogen-clean
clean:: bootstrap-clean

stamp-autogen:
./autogen.sh
touch stamp-autogen
stamp-bootstrap:
./bootstrap
touch stamp-bootstrap

autogen-clean:
-rm -f stamp-autogen
bootstrap-clean:
-rm -f stamp-bootstrap

0 comments on commit a5fc6a8

Please sign in to comment.