|
Revision 320, 389 bytes
(checked in by xi, 2 years ago)
|
Added autoconf rules to distribute win32 project files.
|
| Line | |
|---|
| 1 |
## Run `./bootstrap` to generate the "Makefile.in" files in this directory and |
|---|
| 2 |
## the "$SUBDIRS" subdirectories. |
|---|
| 3 |
|
|---|
| 4 |
SUBDIRS = include src . tests win32 |
|---|
| 5 |
|
|---|
| 6 |
EXTRA_DIST = README LICENSE doc/doxygen.cfg |
|---|
| 7 |
|
|---|
| 8 |
maintainer-clean-local: |
|---|
| 9 |
-rm -f aclocal.m4 config.h.in configure config/* |
|---|
| 10 |
-find ${builddir} -name Makefile.in -exec rm -f '{}' ';' |
|---|
| 11 |
|
|---|
| 12 |
.PHONY: bootstrap |
|---|
| 13 |
bootstrap: maintainer-clean |
|---|
| 14 |
./bootstrap |
|---|
| 15 |
|
|---|