Move convert_benchmark into oneoff/

This commit is contained in:
Oliver Jowett 2019-05-02 17:21:56 +08:00
parent d575cc0d00
commit 74d7ead41b
2 changed files with 2 additions and 2 deletions

View file

@ -68,5 +68,5 @@ crctests: crc.c crc.h
benchmarks: convert_benchmark benchmarks: convert_benchmark
./convert_benchmark ./convert_benchmark
convert_benchmark: convert_benchmark.o convert.o util.o oneoff/convert_benchmark: oneoff/convert_benchmark.o convert.o util.o
$(CC) $(CPPFLAGS) $(CFLAGS) -g -o $@ $^ -lm $(CC) $(CPPFLAGS) $(CFLAGS) -g -o $@ $^ -lm

View file

@ -18,7 +18,7 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>. // along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "dump1090.h" #include "../dump1090.h"
static void **testdata_uc8; static void **testdata_uc8;
static void **testdata_sc16; static void **testdata_sc16;