From ec15c64ed9375a3fc7ffbf97b919993e2274d2d2 Mon Sep 17 00:00:00 2001 From: "Frank Singleton, VK3FCS" Date: Tue, 18 Jul 2000 21:16:49 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@4 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- README.developer | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.developer b/README.developer index 41b89f1e4..231fcc455 100644 --- a/README.developer +++ b/README.developer @@ -20,6 +20,7 @@ ft747/ `-- test |-- Makefile |-- RCS + |-- RESULT.example |-- testlibft747.c `-- testlibft747.h @@ -35,3 +36,17 @@ ft747/ 6. libXXXX.so should be built to allow TX (PTT) to be disabled if required. See ft747.[ch] for how this is done. +7. The Makefile for the test suite should have a target like + this to allow testing the API. + + # run test program in local directory + + .PHONY: runtest + runtest: + (LD_LIBRARY_PATH="../lib" ./testlibft747 ) + + +8. You may wish to make an example out from your test suite + program available as follows. + + make runtest > RESULT.example