summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: da86c1b861fffb6dca0e7f66a12fcd37625910a5 (plain)
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
#  Copyright 2009 Dave Airlie
#  Copyright 2010 Jerome Glisse
#
#  Permission is hereby granted, free of charge, to any person obtaining a
#  copy of this software and associated documentation files (the "Software"),
#  to deal in the Software without restriction, including without limitation
#  on the rights to use, copy, modify, merge, publish, distribute, sub
#  license, and/or sell copies of the Software, and to permit persons to whom
#  the Software is furnished to do so, subject to the following conditions:
#
#  The above copyright notice and this permission notice (including the next
#  paragraph) shall be included in all copies or substantial portions of the
#  Software.
#
#  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#  FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
#  THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
#  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
#  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

AUTOMAKE_OPTIONS = foreign

bin_PROGRAMS = radeondb radeon-bof-json

AM_CFLAGS = -std=c99 $(LIBJANSSON_CFLAGS) $(LIBDRM_CFLAGS)$(LIBDRM_RADEON_CFLAGS)\
	$(PCIACCESS_CFLAGS)
noinst_HEADER = radeon.h radeon_priv.h r600_states.h mode.h

radeondb_SOURCES = radeondb.c bof.c radeon_pciid.c radeon_ctx.c radeon_bof.c\
	radeon_json.c r600_state.c r600_ctx.c mode.c radeon.c radeon_state.c\
	radeon_draw.c radeon_bo.c radeon_pci.c radeon_reg.c rs600_reg.c\
	r600_disassembler.c r100_reg.c r600_reg.c
radeondb_LDADD = $(LIBJANSSON_LIBS) $(LIBDRM_LIBS) $(LIBDRM_RADEON_LIBS) $(PCIACCESS_LIBS)

radeon_bof_json_SOURCES = radeon-bof-json.c radeon_pciid.c bof.c
radeon_bof_json_LDADD = $(LIBJANSSON_LIBS)

rs600_reg.c: ../json/rs600.json ../tools/rdb.c
	../tools/rdb -j ../json/rs600.json -h rs600 > rs600_reg.c

r100_reg.c: ../json/r100.json ../tools/rdb.c
	../tools/rdb -j ../json/r100.json -h r100 > r100_reg.c

r600_reg.c: ../json/r600.json ../tools/rdb.c
	../tools/rdb -j ../json/r600.json -h r600 > r600_reg.c