|
Revision 292, 339 bytes
(checked in by athomas, 3 years ago)
|
- Updated my E-Mail address after about a year of having the wrong one :)
- Removed informational message at top of .todo files as it was rather useless and actually annoying to some people placing their .todo files under version control systems.
- Added a XSLT -> XHTML+CSS transform from Francesco Poli.
- Added a bash completion script from the Gentoo projects maintainer Aaron Walker.
- Fixed seg fault visible on 64-bit systems but present on all. Thanks to the Debian project for notifying me and providing a fix.
|
| Line | |
|---|
| 1 |
SUBDIRS=util src doc |
|---|
| 2 |
EXTRA_DIST=.todo QuickStart util/README doc/devtodo.1.in .cvsignore \ |
|---|
| 3 |
doc/todorc.example doc/scripts.sh doc/scripts.tcsh acconfig.h \ |
|---|
| 4 |
$(shell ls contrib/*) |
|---|
| 5 |
|
|---|
| 6 |
rebuild: |
|---|
| 7 |
$(MAKE) -C util rebuild |
|---|
| 8 |
|
|---|
| 9 |
packages: |
|---|
| 10 |
@test `id -u` = 0 || (echo "ERROR: You must be root to generate packages" && exit 1) |
|---|
| 11 |
@/bin/sh ./makepackages.sh |
|---|