1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Author: Ralf Treinen <treinen@debian.org>
Description: add a test target for byte compilation
Index: bibtex2html/Makefile.in
===================================================================
--- bibtex2html.orig/Makefile.in 2018-03-23 21:14:28.486895146 +0100
+++ bibtex2html/Makefile.in 2018-03-23 21:14:28.482895125 +0100
@@ -79,6 +79,11 @@
./bibtex2html$(EXE) test.bib
@echo "test passed successfully"
+test-byte: bibtex2html.byte bib2bib.byte
+ ./bib2bib.byte test.bib
+ ./bibtex2html.byte test.bib
+ @echo "test passed successfully"
+
install-indep:
mkdir -p $(BINDIR)
cp aux2bib $(BINDIR)/aux2bib
|