mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2024-11-01 05:38:06 +02:00
tools/: rename "antorcha" to ant-cl (command line) and move to tools/ant-cl/
This commit is contained in:
parent
56290e0174
commit
758d9e7fc4
@ -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
|
||||
|
@ -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
1
tools/ant-cl/hash.c
Normal file
@ -0,0 +1 @@
|
||||
#include "../../fw/hash.c"
|
@ -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
|
@ -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
|
@ -1 +0,0 @@
|
||||
#include "../fw/hash.c"
|
Loading…
Reference in New Issue
Block a user