9b9230a0a7
This gets rid of the rest of the symbolic links. However, as a consequence, the crypto header files have now moved to src/, and can no longer contain library-specific declarations. Therefore, cipher_t, digest_t, ecdh_t, ecdsa_t and rsa_t are now all opaque types, and only pointers to those types can be used.
27 lines
521 B
Makefile
27 lines
521 B
Makefile
## Process this file with automake to get Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = gnu
|
|
|
|
SUBDIRS = m4 src doc gui
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = COPYING.README README.android
|
|
|
|
ChangeLog:
|
|
git log > ChangeLog
|
|
|
|
deb:
|
|
dpkg-buildpackage -rfakeroot
|
|
|
|
rpm: dist
|
|
cp $(distdir).tar.gz /usr/src/redhat/SOURCES/
|
|
cp redhat/tinc.spec /usr/src/redhat/SOURCES/
|
|
cd /usr/src/redhat/SOURCES/ && rpm -bb tinc.spec
|
|
|
|
release:
|
|
rm -f ChangeLog
|
|
$(MAKE) ChangeLog
|
|
echo "Please edit the NEWS file now..."
|
|
/usr/bin/editor NEWS
|
|
$(MAKE) dist
|