Root/tools/usbperf/Makefile

Source at commit 1f003f1c2100f7f3670106fd13df0eaec7a0e4e1 created 7 years 6 months ago.
By Werner Almesberger, atusb/atusb.kicad_pcb: grow RF feed trace to 1.9 mm, for 1.0 mm PCB
1#
2# usbperf/Makefile - Wait for an USB device to appear
3#
4# Written 2011 by Werner Almesberger
5# Copyright 2011 Werner Almesberger
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12
13
14MAIN = usbperf
15
16ifeq ($(TARGET),)
17TARGET = host
18endif
19
20ifeq ($(TARGET),host)
21
22include ../Makefile.common
23
24else
25
26.PHONY: all install uninstall clean spotless
27
28all:
29
30install:
31
32uninstall:
33
34clean:
35        rm -f $(MAIN).o
36
37spotless: clean
38        rm -f $(MAIN)
39
40endif
41

Archive Download this file



interactive