]> sigrok.org Git - sigrok-dumps.git/blob - Makefile
76458ae5ad3c84becd87db90ef35b5baf956e9ff
[sigrok-dumps.git] / Makefile
1 ##
2 ## This file is part of the sigrok-dumps project.
3 ##
4 ## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, see <http://www.gnu.org/licenses/>.
18 ##
19
20 VERSION = "0.1.0"
21
22 DESTDIR ?= /usr/local/share/sigrok-dumps
23
24 # Be explicit about which files or subdirectories to install.
25 # Update this list when adding a new top level subdirectory to the
26 # set of example captures. It's assumed that this event is rare.
27 # The list is phrased such that users can specify additional items
28 # when they invoke the 'make install' command.
29 FILES_DIRS += ac97 am230x arm_trace aud avr_isp avr_pdi
30 FILES_DIRS += caliper can cec
31 FILES_DIRS += dac dali dcc dcf77 display dmx512 dsi
32 FILES_DIRS += flexray fsk
33 FILES_DIRS += gpib graycode
34 FILES_DIRS += i2c i2s ir
35 FILES_DIRS += jtag
36 FILES_DIRS += led lens_mounts lpc
37 FILES_DIRS += maple_bus mcs48 mdio microwire miller misc morse mouse_sensors
38 FILES_DIRS += nfc nonstandard_eeproms
39 FILES_DIRS += onewire ook
40 FILES_DIRS += pjon ps2 pwm
41 FILES_DIRS += qi
42 FILES_DIRS += rc rfid
43 FILES_DIRS += sae-j1850 sdcard sdq sht7x signature sle44xx spdif spi
44 FILES_DIRS += stepper_motor swd swim
45 FILES_DIRS += tdm_audio
46 FILES_DIRS += uart usb usb_power_delivery
47 FILES_DIRS += vfd
48 FILES_DIRS += wiegand
49 FILES_DIRS += xy2-100
50 FILES_DIRS += z80
51
52 all:
53         @echo "Run 'make dist' to create a tarball."
54
55 ChangeLog:
56         git log > ChangeLog || touch ChangeLog
57
58 dist: ChangeLog
59         @tar -c -v -z --exclude=.git --exclude=Makefile \
60                 --exclude=sigrok-dumps-$(VERSION).tar.gz \
61                 -f sigrok-dumps-$(VERSION).tar.gz *
62         @rm -f ChangeLog
63
64 install:
65         @mkdir -p $(DESTDIR)
66         @cp -r $(FILES_DIRS) $(DESTDIR)