1
0
mirror of git://projects.qi-hardware.com/antorcha.git synced 2024-11-01 03:03:08 +02:00

tools/: rename "antorcha" to ant-cl (command line) and move to tools/ant-cl/

This commit is contained in:
Werner Almesberger 2012-06-30 12:38:27 -03:00
parent 56290e0174
commit 758d9e7fc4
6 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
#
# tools/Makefile - Build the Antorcha tool
# tools/ant-cl/Makefile - Build the Antorcha command-line tool
#
# Written 2012 by Werner Almesberger
# Copyright 2012 Werner Almesberger
@ -11,19 +11,19 @@
#
MAIN = antorcha
MAIN = ant-cl
CFLAGS = -g -I../fw -I../../ben-wpan/tools/include \
-I../../ben-wpan/atusb/fw/include \
CFLAGS = -g -I../../fw -I../../../ben-wpan/tools/include \
-I../../../ben-wpan/atusb/fw/include \
-Wall \
$(if $(NOGFX),, -DGFX $(shell sdl-config --cflags)) \
$(if $(BEN), -static)
LDLIBS = -L../../ben-wpan/tools/lib -latrf \
LDLIBS = -L../../../ben-wpan/tools/lib -latrf \
$(if $(NOGFX),, $(shell sdl-config --libs) -lSDL_gfx) \
$(if $(BEN),, -usb)
$(if $(BEN),, -lusb)
OBJS = antorcha.o hash.o $(if $(NOGFX),, plot.o)
OBJS = ant-cl.o hash.o $(if $(NOGFX),, plot.o)
.PHONY: all ben clean spotless update ping off

View File

@ -1,5 +1,5 @@
/*
* tools/antorcha.c - Antorcha control utility
* tools/ant-cl/ant-cl.c - Antorcha control utility
*
* Written 2012 by Werner Almesberger
* Copyright 2012 Werner Almesberger

1
tools/ant-cl/hash.c Normal file
View File

@ -0,0 +1 @@
#include "../../fw/hash.c"

View File

@ -1,5 +1,5 @@
/*
* tools/plot.c - Sample plot
* tools/ant-cl/plot.c - Sample plot
*
* Written 2012 by Werner Almesberger
* Copyright 2012 Werner Almesberger

View File

@ -1,5 +1,5 @@
/*
* tools/plot.h - Sample plot
* tools/ant-cl/plot.h - Sample plot
*
* Written 2012 by Werner Almesberger
* Copyright 2012 Werner Almesberger

View File

@ -1 +0,0 @@
#include "../fw/hash.c"