chiark / gitweb /
netlink: Set "unused" in ICMP header (SECURITY)
[secnet.git] / Makefile.in
index 182204b4b791dfcd92453430052567b9cb203ae9..81e5175008e006d9780eaf971ac5bb0eae77a7f5 100644 (file)
@@ -18,7 +18,7 @@
 .PHONY:        all clean realclean distclean dist install
 
 PACKAGE:=secnet
-VERSION:=0.2.1
+VERSION:=0.3.0
 
 @SET_MAKE@
 
@@ -53,11 +53,15 @@ mandir:=@mandir@
 TARGETS:=secnet
 
 OBJECTS:=secnet.o util.o conffile.yy.o conffile.tab.o conffile.o modules.o \
-       resolver.o random.o udp.o site.o transform.o netlink.o rsa.o dh.o \
-       serpent.o md5.o version.o tun.o slip.o sha1.o ipaddr.o log.o \
+       resolver.o random.o udp.o site.o transform-cbcmac.o transform-eax.o \
+       netlink.o rsa.o dh.o serpent.o serpentbe.o \
+       md5.o sha512.o version.o tun.o slip.o sha1.o ipaddr.o log.o \
        process.o @LIBOBJS@ \
        hackypar.o
 
+TEST_OBJECTS:=eax-aes-test.o eax-serpent-test.o eax-serpentbe-test.o \
+               eax-test.o aes.o
+
 %.c:   %.y
 
 %.yy.c:        %.fl
@@ -69,7 +73,7 @@ OBJECTS:=secnet.o util.o conffile.yy.o conffile.tab.o conffile.o modules.o \
 %.o: %.c
        $(CC) $(CPPFLAGS) $(ALL_CFLAGS) -c $< -o $@
 
-all:   $(TARGETS)
+all:   $(TARGETS) check
 
 # Automatic remaking of configuration files, from autoconf documentation
 ${srcdir}/configure: configure.in
@@ -93,8 +97,8 @@ config.status: configure
 # End of config file remaking rules
 
 # C and header file dependency rules
-SOURCES:=$(OBJECTS:.o=.c)
-DEPENDS:=$(OBJECTS:.o=.d)
+SOURCES:=$(OBJECTS:.o=.c) $(TEST_OBJECTS:.o=.c)
+DEPENDS:=$(OBJECTS:.o=.d) $(TEST_OBJECTS:.o=.d)
 
 $(DEPENDS): ${srcdir}/depend.sh
 
@@ -112,11 +116,23 @@ conffile.tab.c:   conffile.y
 secnet:        $(OBJECTS)
        $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) $(LDLIBS)
 
+check: eax-aes-test.confirm eax-serpent-test.confirm \
+       eax-serpentbe-test.confirm
+
 version.c: Makefile
        echo "#include \"secnet.h\"" >$@.new
        echo "char version[]=\"secnet $(VERSION)\";" >>$@.new
        mv -f $@.new $@
 
+eax-%-test: eax-%-test.o eax-test.o %.o
+       $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $^
+
+eax-%-test.confirm: eax-%-test eax-%-test.vectors
+       ./$< <$(srcdir)/eax-$*-test.vectors >$@.new
+       mv -f $@.new $@
+
+.PRECIOUS: eax-%-test
+
 installdirs:
        $(INSTALL) -d $(prefix)/share/secnet $(sbindir)
        $(INSTALL) -d $(mandir)/man8
@@ -129,7 +145,7 @@ install: installdirs
 
 clean:
        $(RM) -f *.o *.yy.c *.tab.[ch] $(TARGETS) core version.c
-       $(RM) -f *.d *~
+       $(RM) -f *.d *~ eax-*-test.confirm eax-*-test
 
 realclean:     clean
        $(RM) -f *~ Makefile config.h  *.d \
@@ -159,27 +175,29 @@ dist:
 #
 #  3. Commit the updates to VERSION (above) and debian/changelog
 #
-#  4. git-tag -s v$(VERSION)
+#  4. git-tag -m "secnet $VERSION" -s v$VERSION
 #
 #  5. git-push origin
 #
 #  6. Run, again,
 #       make dist
 #
-#  7. gpg --detach-sign ../secnet-$(VERSION).tar.gz
+#  7. gpg --detach-sign ../secnet-$VERSION.tar.gz
 #
 #  8. rsync -v ../secnet-$VERSION.tar.gz* \
 #        chiark:/home/ianmdlvl/public-html/secnet/download/
 #
 #  9. On chiark:
-#       tar zxf ~ianmdlvl/public-html/secnet/download/secnet-$(VERSION).tar.gz
-#       cd secnet-$(VERSION)
+#       tar zxf ~ianmdlvl/public-html/secnet/download/secnet-$VERSION.tar.gz
+#       cd secnet-$VERSION
 #       debian/rules build
 #       fakeroot debian/rules binary
-#       mv ../secnet_0.1.18.1-1_i386.deb ~/public-html/secnet/download/
+#       mv ../secnet_${VERSION}_i386.deb ~ianmdlvl/public-html/secnet/download/
 #
 #  10. On chiark as user secnet:
-#       cd ~secnet/
-#       rsync ~ianmdlvl/public-html/secnet/download/secnet* .
+#       cd ~secnet/public-html/release/
+#       mkdir $VERSION
+#       cd $VERSION
+#       ln -s /home/ianmdlvl/public-html/secnet/download/secnet?$VERSION* .
 #
 #  11. write and post a release announcement