mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-09 11:20:17 +02:00
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
#
|
|
# prod/Makefile - Run the production test process (reference/development)
|
|
#
|
|
# Written 2011 by Werner Almesberger
|
|
# Copyright 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.
|
|
#
|
|
|
|
|
|
ATBEN_DUT=net:ben
|
|
ATBEN_REF=usb
|
|
ATUSB_DUT=usb
|
|
ATUSB_REF=net:ben
|
|
SPECTRUM_MARGIN=+5 +5
|
|
|
|
GENPATHPROF=../tools/atrf-path/genpathprof
|
|
|
|
|
|
.PHONY: all ben usb flash spectrum spotless
|
|
|
|
all: ben
|
|
|
|
ben: ben.profile
|
|
./atben $(ATBEN_REF) $(ATBEN_DUT)
|
|
|
|
usb: usb.profile
|
|
./atusb $(ATUSB_REF) $(ATUSB_DUT)
|
|
|
|
flash:
|
|
./atusb-flash $(ATUSB_REF) $(ATUSB_DUT)
|
|
|
|
spectrum:
|
|
atrf-path -g -T +0.5 $(ATBEN_REF) $(ATBEN_DUT) 10 | \
|
|
$(GENPATHPROF) $(SPECTRUM_MARGIN) >ben.profile || \
|
|
{ rm -rf ben.profile; exit 1; }
|
|
atrf-path -g -T +0.5 $(ATUSB_REF) $(ATUSB_DUT) 10 | \
|
|
$(GENPATHPROF) $(SPECTRUM_MARGIN) >usb.profile || \
|
|
{ rm -rf usb.profile; exit 1; }
|
|
|
|
ben.profile:
|
|
cp ../tools/atrf-path/profile.example $@
|
|
|
|
usb.profile:
|
|
cp ../tools/atrf-path/profile.example $@
|
|
|
|
spotless:
|
|
rm -f ben.profile usb.profile
|