]> sigrok.org Git - sigrok-dumps.git/blame - Makefile
Makefile: explicitly list which example capture subdirs to install
[sigrok-dumps.git] / Makefile
CommitLineData
b90bb151 1##
f5915307 2## This file is part of the sigrok-dumps project.
b90bb151
UH
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
7c43d7c6 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
b90bb151
UH
18##
19
8bf853f8 20VERSION = "0.1.0"
b90bb151 21
4fafe815
UH
22DESTDIR ?= /usr/local/share/sigrok-dumps
23
c3e314a9
GS
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.
29FILES_DIRS += ac97 am230x arm_trace aud avr_isp avr_pdi
30FILES_DIRS += caliper can cec
31FILES_DIRS += dac dali dcc dcf77 display dmx512 dsi
32FILES_DIRS += flexray fsk
33FILES_DIRS += gpib graycode
34FILES_DIRS += i2c i2s ir
35FILES_DIRS += jtag
36FILES_DIRS += led lens_mounts lpc
37FILES_DIRS += maple_bus mcs48 mdio microwire miller misc morse mouse_sensors
38FILES_DIRS += nfc nonstandard_eeproms
39FILES_DIRS += onewire ook
40FILES_DIRS += pjon ps2 pwm
41FILES_DIRS += qi
42FILES_DIRS += rc rfid
43FILES_DIRS += sae-j1850 sdcard sdq sht7x signature sle44xx spdif spi
44FILES_DIRS += stepper_motor swd swim
45FILES_DIRS += tdm_audio
46FILES_DIRS += uart usb usb_power_delivery
47FILES_DIRS += vfd
48FILES_DIRS += wiegand
49FILES_DIRS += xy2-100
50FILES_DIRS += z80
51
ad011ff3
UH
52all:
53 @echo "Run 'make dist' to create a tarball."
b90bb151 54
797bc2e4
UH
55ChangeLog:
56 git log > ChangeLog || touch ChangeLog
57
58dist: ChangeLog
b90bb151 59 @tar -c -v -z --exclude=.git --exclude=Makefile \
8bf853f8
UH
60 --exclude=sigrok-dumps-$(VERSION).tar.gz \
61 -f sigrok-dumps-$(VERSION).tar.gz *
797bc2e4 62 @rm -f ChangeLog
b90bb151 63
4fafe815
UH
64install:
65 @mkdir -p $(DESTDIR)
c3e314a9 66 @cp -r $(FILES_DIRS) $(DESTDIR)