mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-04 23:23:43 +02:00
dropped f32xbase dependency on Makefile.common
This means that we only depend on f32xbase for atusb-sil (defunct) and cntr (needs updating), but not for any of the project's main parts. - makefiles/Makefile.basic: copied over from f32xbase/lib/Makefile.common - makefiles/Makefile.basic (LDLIBS): removed inclusion of libusb - tools/Makefile.common: use makefiles/Makefile.basic - install/INSTALL-Ben, prod/doc/setup.hmac: removed f32xbase dependency
This commit is contained in:
parent
208663ce5f
commit
45746fdfa5
@ -104,7 +104,6 @@
|
||||
7. Build dirtpan, a crude IPv4-over-IEEE 802.15.4 tunnel
|
||||
|
||||
git clone git://projects.qi-hardware.com/ben-wpan.git
|
||||
git clone git://projects.qi-hardware.com/f32xbase.git
|
||||
|
||||
# If compiling dirtpan.c fails due a missing ieee802145.h header,
|
||||
# copy it over from lowpan-tools:
|
||||
|
37
makefiles/Makefile.basic
Normal file
37
makefiles/Makefile.basic
Normal file
@ -0,0 +1,37 @@
|
||||
#
|
||||
# Makefile.basic - Basic makefile for single-executable builds
|
||||
#
|
||||
# Written 2008, 2011 by Werner Almesberger
|
||||
# Copyright 2008, 2011 Werner Almesberger
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
|
||||
|
||||
INSTALL_PREFIX = /usr/local
|
||||
|
||||
CFLAGS = -Wall
|
||||
LDFLAGS =
|
||||
LDLIBS =
|
||||
|
||||
.PHONY: all install uninstall clean spotless
|
||||
|
||||
all: $(MAIN)
|
||||
|
||||
$(MAIN): $(MAIN).o $(OBJS)
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(MAIN).o $(OBJS) $(LDLIBS)
|
||||
|
||||
install: $(MAIN)
|
||||
install $(MAIN) $(INSTALL_PREFIX)/bin/
|
||||
|
||||
uninstall:
|
||||
rm -f $(INSTALL_PREFIX)/bin/$(MAIN)
|
||||
|
||||
clean::
|
||||
rm -f $(MAIN).o $(OBJS)
|
||||
|
||||
spotless: clean
|
||||
rm -f $(MAIN)
|
@ -59,7 +59,6 @@ To build the ben-wpan tools and install them under
|
||||
run the following commands:
|
||||
<PRE>
|
||||
git clone git://projects.qi-hardware.com/ben-wpan.git
|
||||
git clone git://projects.qi-hardware.com/f32xbase.git
|
||||
cd ben-wpan/tools
|
||||
make
|
||||
make install
|
||||
@ -212,7 +211,6 @@ out the project's repository, run these commands:
|
||||
|
||||
<PRE>
|
||||
git clone git://projects.qi-hardware.com/ben-wpan.git
|
||||
git clone git://projects.qi-hardware.com/f32xbase.git
|
||||
cd ben-wpan/tools
|
||||
</PRE>
|
||||
|
||||
|
@ -14,10 +14,8 @@ ifeq ($(TARGET),)
|
||||
TARGET = host
|
||||
endif
|
||||
|
||||
F32XBASE = ../../../f32xbase
|
||||
|
||||
ifneq ($(MAIN),)
|
||||
include $(F32XBASE)/lib/Makefile.common
|
||||
include ../../makefiles/Makefile.basic
|
||||
endif
|
||||
|
||||
CC_host = gcc
|
||||
|
Loading…
Reference in New Issue
Block a user