mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-29 02:36:29 +00:00
A lot of the mesa code use struct brw_context to get the GPU generation and various information. Let's stub this structure and initialize it ourselves to be able to resuse mesa's code untouched. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
39 lines
637 B
Makefile
39 lines
637 B
Makefile
SUBDIRS = doc test
|
|
|
|
bin_PROGRAMS = intel-gen4asm intel-gen4disasm
|
|
|
|
AM_YFLAGS = -d --warnings=all
|
|
AM_CFLAGS= $(ASSEMBLER_WARN_CFLAGS)
|
|
|
|
LEX = flex -i
|
|
BUILT_SOURCES = gram.h gram.c lex.c
|
|
gram.h: gram.c
|
|
|
|
intel_gen4asm_SOURCES = \
|
|
brw_compat.h \
|
|
brw_context.c \
|
|
brw_context.h \
|
|
ralloc.c \
|
|
ralloc.h \
|
|
brw_defines.h \
|
|
brw_eu.h \
|
|
brw_reg.h \
|
|
brw_structs.h \
|
|
gen4asm.h \
|
|
gram.y \
|
|
lex.l \
|
|
main.c \
|
|
$(NULL)
|
|
|
|
intel_gen4disasm_SOURCES = \
|
|
brw_disasm.c disasm-main.c
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = intel-gen4asm.pc
|
|
|
|
MAINTAINERCLEANFILES = $(BUILT_SOURCES)
|
|
EXTRA_DIST = \
|
|
README \
|
|
TODO \
|
|
intel-gen4asm.pc.in
|