forked from hreinecke/sg3_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
62 lines (50 loc) · 853 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
scsiincludedir = $(includedir)/scsi
scsiinclude_HEADERS = \
sg_lib.h \
sg_lib_data.h \
sg_cmds.h \
sg_cmds_basic.h \
sg_cmds_extra.h \
sg_cmds_mmc.h \
sg_pr2serr.h \
sg_unaligned.h \
sg_pt.h \
sg_pt_nvme.h
if OS_LINUX
scsiinclude_HEADERS += \
sg_linux_inc.h \
sg_io_linux.h \
sg_pt_linux.h
noinst_HEADERS = \
sg_pt_win32.h
endif
if OS_WIN32_MINGW
scsiinclude_HEADERS += sg_pt_win32.h
noinst_HEADERS = \
sg_linux_inc.h \
sg_io_linux.h
endif
if OS_WIN32_CYGWIN
scsiinclude_HEADERS += sg_pt_win32.h
noinst_HEADERS = \
sg_linux_inc.h \
sg_io_linux.h
endif
if OS_FREEBSD
noinst_HEADERS = \
sg_linux_inc.h \
sg_io_linux.h \
sg_pt_win32.h
endif
if OS_SOLARIS
noinst_HEADERS = \
sg_linux_inc.h \
sg_io_linux.h \
sg_pt_win32.h
endif
if OS_OSF
noinst_HEADERS = \
sg_linux_inc.h \
sg_io_linux.h \
sg_pt_win32.h
endif